Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This C++ program removes all whitespaces. Modify this program so that it also removes any single line comments '//' and multi-line comments '/** */'. Quit

image text in transcribed

This C++ program removes all whitespaces. Modify this program so that it also removes any single line comments '//' and multi-line comments '/** */'. Quit the program if there is an error in the single or multi line comments, such as mutli line comments with only /** and no end. (This can be done via command line, but needs to be done in C++)

#include #include using namespace std; 2 4. int main) { : string prgm; : cout > prgm; 10 ifstream in(prgm.c_str)); 12 13 14 15 16 17 18 19 20 21 if(in.is_open()) ofstream out ((prgm ".bak").c_str)); char data; while : : (inget (data)) if (data !&& data!n && data r && data t&data 'If && data v) :out

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions