Language
C++
Compiler
gcc HEAD 14.0.0 20230712 (experimental)
Options
Warnings
Optimization
Don't Use Boost
C++17(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -O2 -march=native -std=gnu++17
3
3
3
Exit Code:
0
Author
anonymous
almost 2 years ago
C++
gcc HEAD 14.0.0 20230712 (experimental)
Author
anonymous
almost 2 years ago
$ g++ prog.cc -Wall -Wextra -O2 -march=native -std=gnu++17
prog.cc: In function 'int main()':
prog.cc:29:15: warning: unused variable 'end_i' [-Wunused-variable]
29 | const int end_i = 6;
| ^~~~~
3
3
3