C Programming - Output for the Given C Program
#include int main() { int a[2][3] = {1, 2, 3, 4, 5}; int i = 0, j = 0; for (i = 0; i < 2; i++) for (j = 0; j < 3; j++) printf("%d ", a[i][j]); return 0; } What is the output of the C program?
Answers
Answered by
0
actually it is against to c programming rules because you just mentioned #include and by correcting some errors the output we get by using this source code is
123450123450
123450123450
Similar questions