1.

What will be the output of the following C code? #include #define sf 10 main() { if(sf==100) printf("good"); else { printf("bad"); sf=100; } printf("%d",sf); }

A. 100
B. bad
C. 10
D. error
Answer» E.


Discussion

No Comment Found