Visual Studio 2008 ANSI C Limit

I want to restrict Microsoft's visual studio so that it can only run the code "C99" (ANSI C). Can someone give me some recommendations?

+3
source share
1 answer

Microsoft did not implement c99, instead they put their efforts into standard C ++.

However, if you want to disable Microsoft extensions for C / C ++, you can use the compiler / Za compiler, but don't expect to use c99 stuff, for example stdint.h.

+3
source

Source: https://habr.com/ru/post/1726204/


All Articles