Consider the statement
int val[2] [4] = {1, 2, 3, 4, 5, 6, 7, 8};
What is the array declaration in the row-major order if its corresponding value is 4?
1
val [1] [4]
2
val [0] [4]
3
val [1] [1]
4
none of the above
Consider the statement
int val[2] [4] = {1, 2, 3, 4, 5, 6, 7, 8};
What is the array declaration in the row-major order if its corresponding value is 4?