Home » C Programming » C Preprocessor

What will be the output of the program? #include #define MESS junk int main() { printf("MESS\n"); return 0; }

Correct Answer: MESS

Explanation:

printf("MESS\n"); It prints the text "MESS". There is no macro calling inside the printf statement occured.

← Previous Question Next Question→

More Questions from C Preprocessor

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion