Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Macro & Preprocessor | Question 8

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




#include <stdio.h>
#define a 10
int main()
{
  printf("%d ",a);
  
  #define a 50
  
  printf("%d ",a);
  return 0;
}

(A) Compiler Error
(B) 10 50
(C) 50 50
(D) 10 10


Answer: (B)

Explanation: Preprocessor doesn’t give any error if we redefine a preprocessor directive. It may give warning though. Preprocessor takes the most recent value before use of and put it in place of a.

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!