Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Macro & Preprocessor | Question 7

Improve Article
Save Article
Like Article
  • Difficulty Level : Medium
  • Last Updated : 06 Feb, 2013
Improve Article
Save Article
Like Article

Output?




# include <stdio.h>
# define scanf  "%s Geeks Quiz "
int main()
{
   printf(scanf, scanf);
   return 0;
}

(A) Compiler Error
(B) %s Geeks Quiz
(C) Geeks Quiz
(D) %s Geeks Quiz Geeks Quiz


Answer: (D)

Explanation: After pre-processing phase of compilation, printf statement will become.
printf(“%s Geeks Quiz “, “%s Geeks Quiz “);
Now you can easily guess why output is “%s Geeks Quiz Geeks Quiz”.

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!