

MCQOPTIONS
Saved Bookmarks
1. |
What will be output if you will compile and execute the following c code? #include int main(){int array[]={10,20,30,40};printf("%d",-2[array]); return 0;} |
A. | -60 |
B. | -30 |
C. | 60 |
D. | garbage value |
Answer» C. 60 | |