[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Program Discussion :: Basics

Home > Programs > Basics

93 / 279

Write code to remove comment lines.

Answer:

#include 
using namespace std;
string removeComments(string prgm)
{
    int n = prgm.length();
    string res;
    /* Flags to indicate that single line and multpile line comments */
    /* have started or not */
    bool s_cmt = false;
    bool m_cmt = false;
    /* Traverse the given program */
    for (int i=0; i

Asked In :: PEOL

Post Your Answer Here:

Language:

Post Your Reply Here:



Language:

Post Your Reply Here: