I read here it is C90 with extensions. How can I know for sure?
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.
Use the
-std=flag to specify a language dialect:c89,c99,c++98, etc. Note thatc90is equivalent toc89.As a shorthand
-ansicauses-std=c89in C mode and-std=c++98in C++ mode.Use
-pedanticto enable all diagnostics that the standards require.The defaults are
gnu89for C andgnu++98for C++. Consult the manual for detailed descriptions of the various dialects.