Question: Given a text file input . txt , write a program to identify all the lexemes from the file input . txt and write the

Given a text file input.txt, write a program to identify all the lexemes from the file input.txt and write the lexemes separated by a single space into the file output.txt. Please keep in mind that all comment lines (lines that begin with //), blank lines and extra white spaces are not included in the file output.txt. Do not forget to place one space before and space after each lexeme. Note that the cin>> is one lexeme. Save it as Prog2 and upload it on Canvas.
input.txt:
//declare variables
int num1, nume2, num3,t ;
//initialize variables
num1=13; num2=55 ;
num3=17 ;
cin>> t ;
//compute and display their total
t= num1* num2-t; //compute new value for t
num1= num1+t; //compute new value for num1
Sample output.txt:
int num1, nume2, num3, t;
num1=13;
num2=55;
num3=17;
cin>>t;
t= num1*num2+num3-t;
num1=num1+t;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!