[solved] – Question 82718
What is the value of marks[2][3] in the following array ? AND why?
int [][] marks = { {88, 80, 79, 92}, {75, 84, 93, 80},{98, 95, 92, 94},{91, 84, 88, 96} };
Expert Answer
OR
What is the value of marks[2][3] in the following array ? AND why?
int [][] marks = { {88, 80, 79, 92}, {75, 84, 93, 80},{98, 95, 92, 94},{91, 84, 88, 96} };
OR