MCQOPTIONS
Saved Bookmarks
| 1. |
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 |
| D. | 1010 |
| Answer» D. 1010 | |