what is the output of the following program and i need step by step explanation
void fun(int [][3]);
int main()
{
int a[3][3] = {9,8,7,6,5,4,3,2,1};
fun(a);
printf("%d\n" , a[2][1]);
}
void fun(int b[][3])
{
++b;
b[1][1]=5;
}
Answers
Answered by
0
Answer:
blah blah blah blah blah blah blah XD
Similar questions
Math,
1 month ago
English,
1 month ago
Psychology,
1 month ago
Psychology,
2 months ago
English,
9 months ago
Physics,
9 months ago
Science,
9 months ago