0_0_15208573_14631.c: In function 'sort':
0_0_15208573_14631.c:15:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 0; i < n; i++)
^
0_0_15208573_14631.c:15:5: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_15208573_14631.c:17:13: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int k = 0; k < n - i - 1; k++)
^
0_0_15208573_14631.c: In function 'main':
0_0_15208573_14631.c:35:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j = 0; j < t; j++)
^
0_0_15208573_14631.c:38:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 0; i < n[j]; i++)
^
0_0_15208573_14631.c:41:13: error: expected expression before '/' token
//printf("%d\t%d\n",a[i].round1,a[i].round2);
^
0_0_15208573_14631.c:45:17: error: redefinition of 'i'
for(int i = 1; i < n[j]; i++)
^
0_0_15208573_14631.c:38:17: note: previous definition of 'i' was here
for(int i = 0; i < n[j]; i++)
^
0_0_15208573_14631.c:45:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 1; i < n[j]; i++)
^
0_0_15208573_14631.c:50:9: error: expected expression before '/' token
//printf("%.2f\t%d\n",300/250.0,max2);
^
0_0_15208573_14631.c:51:17: error: redefinition of 'i'
for(int i = 0; i < n[j]; i++)
^
0_0_15208573_14631.c:45:17: note: previous definition of 'i' was here
for(int i = 1; i < n[j]; i++)
^
0_0_15208573_14631.c:51:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 0; i < n[j]; i++)
^
0_0_15208573_14631.c:54:13: error: expected expression before '/' token
//printf("%.2f\t",a[i].final_mark);
^
0_0_15208573_14631.c:57:17: error: redefinition of 'i'
for(int i = 0; i < n[j]; i++)
^
0_0_15208573_14631.c:51:17: note: previous definition of 'i' was here
for(int i = 0; i < n[j]; i++)
^
0_0_15208573_14631.c:57:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 0; i < n[j]; i++)
^
0_0_15208573_14631.c:79:13: error: redeclaration of 'i' with no linkage
int i;
^
0_0_15208573_14631.c:57:17: note: previous definition of 'i' was here
for(int i = 0; i < n[j]; i++)
^
0_0_15208573_14631.c:84:17: error: redeclaration of 'i' with no linkage
for(int i = 0; i < m[j]; i++)
^
0_0_15208573_14631.c:79:13: note: previous declaration of 'i' was here
int i;
^
0_0_15208573_14631.c:84:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 0; i < m[j]; i++)
^
|