belongs to collection: C Programming Array\'s Multiple Choice Questions And Answers
Assume the output of below code:
"#include <stdio.h> 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]); } void main() { int a[2][3] = {0}; f(a); }"
Correct Answer:
compile time error
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Correct Answer:
compile time error
need an explanation for this answer? contact us directly to get an explanation for this answer