5. What is the output of the method for the following program ? #include void function(int[][3]); int main(void) { int a[3][3] = {1,2,3,4,5,6,7,8,9}; function(a); printf("%d", a[2][1] - a[1][2] ); return 0; } void function(int a[][3]) { a[1][1]++; } Output:
Answers
Answered by
0
Answer:
What is this this is mathamati so question
Similar questions