Language
C
Compiler
gcc 8.2.0
Options
Warnings
C11(GNU)
no pedantic
$ gcc prog.c -Wall -Wextra -std=gnu11
Exit Code:
1
Author
anonymous
almost 7 years ago
C
gcc 8.2.0
Author
anonymous
almost 7 years ago
$ gcc prog.c -Wall -Wextra -std=gnu11
In file included from prog.c:3:
pi.h:1:8: error: redefinition of 'pi'
double pi = 3.14;
^~
In file included from prog.c:2:
pi.h:1:8: note: previous definition of 'pi' was here
double pi = 3.14;
^~