Question No. 15 of 201 MarksWhat is the output of the following code#includeint main()(int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12);printf("%d", arr[2][1][0]);

Question No. 15 of 20
1 Marks
What is the output of the following code
#include<stdio.h>
int main()
(
int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12);
printf("%d", arr[2][1][0]);


Answer compalier error

Comments