1.

What is the output of this c code? #include void f(int a[2][]) { a[0][1] = 3; int i = 0, j = 0; for (i = 0; i < 2; i++) for (j = 0; j < 3; j++) printf("%d", a[i][j]); } int main() { int a[2][3] = {0}; f(a); return 0; }?

Answer»

ANSWER:

2 is the CORRECT answer

Explanation:

1234 GET on the danceflo800006or



Discussion

No Comment Found