What will be the output of the program? #include<stdio.h> #define MESS junk int main() { printf("MESS "); return 0; }

Correct Answer: MESS

Explanation:

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

More Questions from C Preprocessor

Discussion & Comments

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