MCQOPTIONS
Saved Bookmarks
| 1. |
Predict the output of below code: #include int main() { int arr[1]={10}; printf("%d n", 0[arr]); return 0; } |
| A. | Output : 1 |
| B. | Output : 10 |
| C. | Output : 6 |
| D. | Output : 8 |
| Answer» C. Output : 6 | |