MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    What will be the output of the program ? #include int main() { int arr[1] = {10}; printf("%d", 0[arr]); return 0; } | 
                            
| A. | 1 | 
| B. | 0 | 
| C. | 10 | 
| D. | 6 | 
| Answer» D. 6 | |