prog.c: In function 'main':
prog.c:4:11: error: 'm' undeclared (first use in this function)
int A[m][n];
^
prog.c:4:11: note: each undeclared identifier is reported only once for each function it appears in
prog.c:4:14: error: 'n' undeclared (first use in this function)
int A[m][n];
^
prog.c:11:23: error: expected expression before ')' token
printf("%d%d%d\n",)
^