0_0_38304366_24435.c: In function 'main':
0_0_38304366_24435.c:29:5: error: expected expression before '/' token
//???
^
0_0_38304366_24435.c:33:13: error: 'else' without a previous 'if'
else Mymap[i][j] = STOP;
^
0_0_38304366_24435.c:33:24: error: 'i' undeclared (first use in this function)
else Mymap[i][j] = STOP;
^
0_0_38304366_24435.c:33:24: note: each undeclared identifier is reported only once for each function it appears in
0_0_38304366_24435.c:33:27: error: 'j' undeclared (first use in this function)
else Mymap[i][j] = STOP;
^
0_0_38304366_24435.c:34:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for (int i = 0; i < 10000; i++)
^
0_0_38304366_24435.c:34:5: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_38304366_24435.c:38:14: error: redefinition of 'i'
for (int i = 0; i < How_many_ways; i++)
^
0_0_38304366_24435.c:34:14: note: previous definition of 'i' was here
for (int i = 0; i < 10000; i++)
^
0_0_38304366_24435.c:38:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for (int i = 0; i < How_many_ways; i++)
^
0_0_38304366_24435.c:49:14: error: redefinition of 'i'
for (int i = 0; i < 10000; i++)
^
0_0_38304366_24435.c:38:14: note: previous definition of 'i' was here
for (int i = 0; i < How_many_ways; i++)
^
0_0_38304366_24435.c:49:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for (int i = 0; i < 10000; i++)
^
0_0_38304366_24435.c: In function 'Dijkstra':
0_0_38304366_24435.c:73:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for (int i = 1; i <= How_many_cities; i++)
^
0_0_38304366_24435.c:75:14: error: redefinition of 'i'
for (int i = 1; i <= How_many_cities - 1; i++)
^
0_0_38304366_24435.c:73:14: note: previous definition of 'i' was here
for (int i = 1; i <= How_many_cities; i++)
^
0_0_38304366_24435.c:75:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for (int i = 1; i <= How_many_cities - 1; i++)
^
0_0_38304366_24435.c:78:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for (int j = 1; j <= How_many_cities; j++)
^
0_0_38304366_24435.c:82:18: error: redefinition of 'j'
for (int j = 1; j <= How_many_cities; j++)
^
0_0_38304366_24435.c:78:18: note: previous definition of 'j' was here
for (int j = 1; j <= How_many_cities; j++)
^
0_0_38304366_24435.c:82:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for (int j = 1; j <= How_many_cities; j++)
^
|