0_0_20687754_13619.c: In function 'read_input':
0_0_20687754_13619.c:10:2: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 0; i < 6; i++) {
^
0_0_20687754_13619.c:10:2: note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code
0_0_20687754_13619.c: In function 'main':
0_0_20687754_13619.c:22:2: error: expected expression before '/' token
// freopen("test.txt", "r", stdin);
^
0_0_20687754_13619.c:26:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 0; i < 6; i++)
^
0_0_20687754_13619.c:37:3: error: expected expression before '/' token
// memset(dp, -1, sizeof(int) * (sum + 2));
^
0_0_20687754_13619.c:39:11: error: redefinition of 'i'
for(int i = 0; i < 6; i++) {
^
0_0_20687754_13619.c:26:11: note: previous definition of 'i' was here
for(int i = 0; i < 6; i++)
^
0_0_20687754_13619.c:39:3: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int i = 0; i < 6; i++) {
^
0_0_20687754_13619.c:43:4: error: expected expression before '/' token
// memset(dp_cur, -1, sizeof(int) * (val + 1));
^
0_0_20687754_13619.c:53:5: error: 'for' loop initial declarations are only allowed in C99 or C11 mode
for(int j = 0; j <= val; j++) {
^
0_0_20687754_13619.c:78:2: error: expected expression before '/' token
// fclose(stdin);
^
|