C | Macro & Preprocessor | Question 7

Last Updated :
Discuss
Comments
Output? C
# include <stdio.h>
# define scanf  "%s Geeks Quiz "
int main()
{
   printf(scanf, scanf);
   return 0;
}
Compiler Error
%s Geeks Quiz
Geeks Quiz
%s Geeks Quiz Geeks Quiz
Tags:
Share your thoughts in the comments