MCQOPTIONS
Saved Bookmarks
| 1. |
What will be output if you will compile and execute the following c code? #include int main(){ const int x=25; int * const p=&x; *p=2*x; printf("%d",x); return 0; } |
| A. | 25 |
| B. | 50 |
| C. | 0 |
| D. | Compiler error |
| Answer» C. 0 | |