the code is like this:
/* a comment line in a C program */
printf("It is /* NOT a comment line */\n");
x = 5; /* This is an assignment, not a comment line */
[TAB][SPACE] /* another empty comment line here */
And the expected output is like this:
printf("It is /* NOT a comment line */\n");
x = 5; /* This is an assignment, not a comment line */