0_0_36643494_2963.c: In function 'main':
0_0_36643494_2963.c:17:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=0;i<p;i++)
^
0_0_36643494_2963.c:17:9: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_36643494_2963.c:23:17: error: redefinition of 'i'
for(int i=1;i<=r;i++)
^
0_0_36643494_2963.c:17:17: note: previous definition of 'i' was here
for(int i=0;i<p;i++)
^
0_0_36643494_2963.c:23:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=1;i<=r;i++)
^
0_0_36643494_2963.c:26:17: error: redefinition of 'i'
for(int i=p-1;i>=0;i--)
^
0_0_36643494_2963.c:23:17: note: previous definition of 'i' was here
for(int i=1;i<=r;i++)
^
0_0_36643494_2963.c:26:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=p-1;i>=0;i--)
^
0_0_36643494_2963.c:35:11: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=l+1;i<=r;i++)
^
0_0_36643494_2963.c:38:13: error: redefinition of 'i'
for(int i=r+1;i<m;i++)
^
0_0_36643494_2963.c:35:19: note: previous definition of 'i' was here
for(int i=l+1;i<=r;i++)
^
0_0_36643494_2963.c:38:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=r+1;i<m;i++)
^
0_0_36643494_2963.c:43:11: error: redefinition of 'i'
for(int i=n;i>=1;i--)
^
0_0_36643494_2963.c:26:17: note: previous definition of 'i' was here
for(int i=p-1;i>=0;i--)
^
0_0_36643494_2963.c:43:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=n;i>=1;i--)
^
|