MCQOPTIONS
Saved Bookmarks
| 1. |
Point out the error in the program. #include int main() { const int x; x=128; printf("%d\n", x); return 0; } |
| A. | Error: unknown data type const int |
| B. | Error: const variable have been initialised when declared. |
| C. | Error: stack overflow in x |
| D. | No error |
| Answer» C. Error: stack overflow in x | |