Question:What will be printed on the standard output as a result of the following code snippet?void main() { int arr[][2] = {1,2,3,4,5,6}; printf("%d",arr[2][1]); }
void main() { int arr[][2] = {1,2,3,4,5,6}; printf("%d",arr[2][1]); }
A 2 B 3 C 4 D 5 E 6
+ AnswerE
+ Report