0_0_21722847_15822.c: In function 'main':
0_0_21722847_15822.c:11:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=0;i<N;i++)
^
0_0_21722847_15822.c:11:5: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_21722847_15822.c:12:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=0;j<N;j++)
^
0_0_21722847_15822.c:16:13: error: redefinition of 'i'
for(int i=0;i<N;i++)
^
0_0_21722847_15822.c:11:13: note: previous definition of 'i' was here
for(int i=0;i<N;i++)
^
0_0_21722847_15822.c:16:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=0;i<N;i++)
^
0_0_21722847_15822.c:17:17: error: redefinition of 'j'
for(int j=0;j<N;j++)
^
0_0_21722847_15822.c:12:17: note: previous definition of 'j' was here
for(int j=0;j<N;j++)
^
0_0_21722847_15822.c:17:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=0;j<N;j++)
^
0_0_21722847_15822.c:20:16: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i1=i;i1<N;i1++)
^
0_0_21722847_15822.c:21:17: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j1=j;j1<N;j1++)
^
0_0_21722847_15822.c:23:25: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int t=i;t<=i1;t++)
^
0_0_21722847_15822.c:24:29: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int t1=j;t1<=j1;t1++)
^
|