

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following program:- #include int main() { const int a=34; int b=128; a = b; printf("%d n",a); return 0; } |
A. | 128 |
B. | 34 |
C. | Compiler error |
D. | garbage value |
Answer» D. garbage value | |