I’m C/GCC noob, sorry. Thank you.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using
-ansiis equivalent to using-std=c89or-std=c++98depending on whether you’re compiling a C or C++ file, so you would not want to use it along with-std=c99as it would conflict.-pedanticon the other hand is independent of-stdso can be used along with it.