1.

What will be the output of the following C code? #include #define san 10 main() { #ifdef san #define san 20 #endif printf("%d",san); }

A. 10
B. 20
C. Error
D. 1020
Answer» C. Error


Discussion

No Comment Found