MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? int main() { const int a; a = 32; printf("a is %d", a); return 0; } |
| A. | a is 32 |
| B. | Compile time error |
| C. | Run time error |
| D. | none |
| Answer» C. Run time error | |