0_0_24675900_8728.c: In function 'main':
0_0_24675900_8728.c:27:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=1;i<=n;i++)
^
0_0_24675900_8728.c:27:9: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_24675900_8728.c:31:17: error: redefinition of 'i'
for(int i=1;i<=n;i++)
^
0_0_24675900_8728.c:27:17: note: previous definition of 'i' was here
for(int i=1;i<=n;i++)
^
0_0_24675900_8728.c:31:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=1;i<=n;i++)
^
0_0_24675900_8728.c:36:7: error: expected expression before '/' token
// memset(dp,0,sizeof(dp));
^
0_0_24675900_8728.c:38:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=0;j<min_j;j++)
^
0_0_24675900_8728.c:42:17: error: redefinition of 'j'
for(int j=min_j;j<=w;j++)
^
0_0_24675900_8728.c:38:17: note: previous definition of 'j' was here
for(int j=0;j<min_j;j++)
^
0_0_24675900_8728.c:42:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=min_j;j<=w;j++)
^
0_0_24675900_8728.c:46:17: error: redefinition of 'i'
for(int i=n-1;i>=1;i--)
^
0_0_24675900_8728.c:31:17: note: previous definition of 'i' was here
for(int i=1;i<=n;i++)
^
0_0_24675900_8728.c:46:9: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i=n-1;i>=1;i--)
^
0_0_24675900_8728.c:49:13: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=0;j<min_j;j++)
^
0_0_24675900_8728.c:53:21: error: redefinition of 'j'
for(int j=min_j;j<=w;j++)
^
0_0_24675900_8728.c:49:21: note: previous definition of 'j' was here
for(int j=0;j<min_j;j++)
^
0_0_24675900_8728.c:53:13: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j=min_j;j<=w;j++)
^
|