0_0_20462029_31047.c: In function 'findmin':
0_0_20462029_31047.c:12:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=1;i<=n;i++)
^
0_0_20462029_31047.c:12:2: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_20462029_31047.c:16:10: error: redefinition of 'i'
for(int i=1;i<=n;i++){
^
0_0_20462029_31047.c:12:10: note: previous definition of 'i' was here
for(int i=1;i<=n;i++)
^
0_0_20462029_31047.c:16:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=1;i<=n;i++){
^
0_0_20462029_31047.c:19:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=1;j<=n;j++){
^
0_0_20462029_31047.c:26:11: error: redefinition of 'j'
for(int j=1;j<=n;j++){
^
0_0_20462029_31047.c:19:11: note: previous definition of 'j' was here
for(int j=1;j<=n;j++){
^
0_0_20462029_31047.c:26:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=1;j<=n;j++){
^
0_0_20462029_31047.c: In function 'main':
0_0_20462029_31047.c:38:8: error: 'i' undeclared (first use in this function)
for (i=1;i<=n;i++)
^
0_0_20462029_31047.c:38:8: note: each undeclared identifier is reported only once for each function it appears in
0_0_20462029_31047.c:40:18: error: 'j' undeclared (first use in this function)
for (j=1;j<=n;j++)
^
0_0_20462029_31047.c:42:25: error: 'INF' undeclared (first use in this function)
A[i][j]=INF;
^
0_0_20462029_31047.c:45:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=1;i<=m;i++){
^
0_0_20462029_31047.c:53:2: error: expected expression before '/' token
// printf("%d",A[1][2]);
^
|