Vidyalelo
C Programming · Q64

C Preprocessor

Programming · C Programming · question 64

Q64

What will be the output of the following C code? #include #define hello 10 void main() printf("%d",hello); #undef hello printf("%d",hello);

A.
10
B.
hello
C.
error
Answer
D.
1010

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board