MCQOPTIONS
Saved Bookmarks
| 1. |
Whats is the output of this C code? void main() { int const k = 11; k++; printf("k is %d", k); } |
| A. | k is 12 |
| B. | Error because const and int are used together |
| C. | garbage value |
| D. | Error, because a constant variable cannot be changed |
| Answer» E. | |