I want to restrict microsoft visual studio so that it can only run “C99” (ANSI C) code. Can any one give me some guideline?
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.
Microsoft has not implemented c99, they have instead been putting their efforts in to standard C++.
However if all you want is to disable Microsoft’s extensions to C/C++ then you can use the /Za compiler switch, but don’t expect to use c99 stuff like
stdint.h.