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
AnswerD.
1010
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board