Borderou de evaluare (job #615730)
Utilizator |
|
IP | ascuns |
---|---|---|---|
Problemă | Oraș (clasa a 8-a) | Compilator | c-32 |
Rundă | Arhiva de probleme | Status | evaluat |
Dată | 11 nov. 2021 19:25:54 | Scor | 0 |
Raport evaluator
Eroare de compilare:
main.c: In function 'fill':
main.c:11:5: error: too few arguments to function 'fill'
11 | fill(i+1,j);
| ^~~~
main.c:7:6: note: declared here
7 | void fill(int i,int j,int cr)
| ^~~~
main.c:13:5: error: too few arguments to function 'fill'
13 | fill(i-1,j);
| ^~~~
main.c:7:6: note: declared here
7 | void fill(int i,int j,int cr)
| ^~~~
main.c:16:5: error: too few arguments to function 'fill'
16 | fill(i,j+1);
| ^~~~
main.c:7:6: note: declared here
7 | void fill(int i,int j,int cr)
| ^~~~
main.c:18:5: error: too few arguments to function 'fill'
18 | fill(i,j-1);
| ^~~~
main.c:7:6: note: declared here
7 | void fill(int i,int j,int cr)
| ^~~~
main.c:21:5: error: too few arguments to function 'fill'
21 | fill(i+1,j+1);
| ^~~~
main.c:7:6: note: declared here
7 | void fill(int i,int j,int cr)
| ^~~~
main.c:23:5: error: too few arguments to function 'fill'
23 | fill(i+1,j-1);
| ^~~~
main.c:7:6: note: declared here
7 | void fill(int i,int j,int cr)
| ^~~~
main.c:26:5: error: too few arguments to function 'fill'
26 | fill(i-1,j+1);
| ^~~~
main.c:7:6: note: declared here
7 | void fill(int i,int j,int cr)
| ^~~~
main.c:28:5: error: too few arguments to function 'fill'
28 | fill(i-1,j-1);
| ^~~~
main.c:7:6: note: declared here
7 | void fill(int i,int j,int cr)
| ^~~~
main.c: In function 'main':