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