Language
C
Compiler
gcc HEAD 9.0.0 20190115 (experimental)
Options
Warnings
C11(GNU)
no pedantic
$ gcc prog.c -Wall -Wextra -std=gnu11 0
Exit Code:
0
Author
anonymous
almost 7 years ago
C
gcc HEAD 9.0.0 20190115 (experimental)
Author
anonymous
almost 7 years ago
$ gcc prog.c -Wall -Wextra -std=gnu11 prog.c: In function 'main':
prog.c:24:32: warning: passing argument 1 of 'Symmetrie' makes pointer from integer without a cast [-Wint-conversion]
24 | x= Symmetrie(square_matrix[4][4]);
| ~~~~~~~~~~~~~~~~^~~
| |
| int
prog.c:5:20: note: expected 'int (*)[100]' but argument is of type 'int'
5 | int Symmetrie (int matrix[][max]) {
| ~~~~^~~~~~~~~~~~~
0