Question: use c++ language Even though comments are essential for human readers, the compiler simply ignores them. If you are writing a compiler, you therefore need


use c++ language
Even though comments are essential for human readers, the compiler simply ignores them. If you are writing a compiler, you therefore need to be able to recognize and eliminate comments that occur in a source file. Write a function void removeComments (istream & is, ostream & os) that copies characters from the input stream is to the output stream os, except for charac- ters that appear inside C + + comments. Your implementation should recognize both comment conventions: Any text beginning with /* and ending with */, possibly many lines later. Any text beginning with // and extending through the end of the line. The real C++ compiler needs to check to make sure that these characters are not contained inside quoted strings, but you should feel free to ignore that detail. The problem is tricky enough as it stands. Requirments & Hints: Please fill in the TODO part of RemoveComments.cpp. You can prepare your test file under the res folder in Stanford Library for testing. The generated results should print in the Stanford console. 1 1 1 /* ...* 4 5 #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
