0_0_33851194_11454.c: In function 'main':
0_0_33851194_11454.c:7:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=0;i<N;i++)
^
0_0_33851194_11454.c:7:2: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_33851194_11454.c:12:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=1;j<=n[i][0];j++)
^
0_0_33851194_11454.c:15:10: error: redefinition of 'j'
for(int j=1;j<=n[i][0];j++)
^
0_0_33851194_11454.c:12:10: note: previous definition of 'j' was here
for(int j=1;j<=n[i][0];j++)
^
0_0_33851194_11454.c:15:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=1;j<=n[i][0];j++)
^
0_0_33851194_11454.c:21:13: error: redefinition of 'i'
for(int i=0;i<N;i++)
^
0_0_33851194_11454.c:7:10: note: previous definition of 'i' was here
for(int i=0;i<N;i++)
^
0_0_33851194_11454.c:21:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=0;i<N;i++)
^
0_0_33851194_11454.c:24:6: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=1;j<=n[i][0];j++)
^
|