MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? #include #define i 5 int main() { #define i 10 printf("%d",i); return 0; } |
| A. | Compilation error |
| B. | 10 |
| C. | 5 |
| D. | Runtime error |
| Answer» C. 5 | |