The Preprocessor Problem
Time for some preprocessor programming ! You need to write a program which gives the same output as this code. Your program will not be executed. It will only be preprocessed by a program.Your code will be processed by cpp(1) and the output will be formatted by -
-> Removing all whitespace characters (note: with this help, preprocessor programming becomes easier).
-> Ignoring all lines which start with '#'.
-> Ignoring all empty lines.
Then, the output will be evaluated if it agrees with the expected result. No stderr output is allowed.
Added Explanation :
The code you submit will be processed(using cpp) and will give us an initial output. The initial output will be formatted by using above rules to give a final output. This final output will be matched to the output given by the given c code.