How can I know which C standard my current Clang compiler adopts? The version of the compiler is shown below:
$ clang --version
Apple clang version 11.0.0 (clang-1100.0.33.8)
Target: x86_64-apple-darwin18.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
I read that
Clang 3.3 and later implement all of the ISO C++ 2011 standard. By default, Clang builds C++ code according to the C++98 standard, with many C++11 features accepted as extensions.
But these are talking about C++ standard. I am concerned with which C standard (Ansi, C99 etc) my Clang compiler is using.