What will be the output of the following C code?
#include #define hello 10 void main() { printf("%d",hello); #undef hello printf("%d",hello); }
Answer: C
No answer description available for this question.