Q. What value does testarray[2][1][0] in the sample code contain?
Code:
int testarray[3][2][2] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
β
Correct Answer: (D)
11
int testarray[3][2][2] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12};
You must be Logged in to update hint/solution