Language
C++
Compiler
gcc 10.1.0
Options
Warnings
Don't Use Boost
C++11
-pedantic
$ g++ prog.cc -Wall -Wextra -std=c++11 -pedantic
Enter a number that you want to check if it is prime or not : 6 is not a prime number.
Exit Code:
0
Author
anonymous
over 4 years ago
C++
gcc 10.1.0
Author
anonymous
over 4 years ago
$ g++ prog.cc -Wall -Wextra -std=c++11 -pedantic
prog.cc: In function 'int prime(int)':
prog.cc:30:1: warning: control reaches end of non-void function [-Wreturn-type]
30 | }
| ^
Enter a number that you want to check if it is prime or not : 6 is not a prime number.