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