I'm working on a Linux machine. Is there any system command to find the standard followed by the C compiler I'm using?
|
feedback
|
|
You can also test this in your code using standard macros, for example (from that link):
If you want to check this from the command line you can pick one (e.g. c89) and check the return value from a minimal program:
| ||||
|
feedback
|
|
At compile time, check against preprocessor macro:
| |||
|
feedback
|
|
This is compiler dependent, I'm supposing you're using GCC. You could check your compiler defined macros using:
Check the manual about the flags, specially: __STDC_VERSION__
In this site you can find a lot of information about this. See the table present here. | ||||
|
feedback
|
|
You probably have gcc, in which case you can specify the standard at compile-time, e.g.
or:
Type:
for full details. | |||||||||||
feedback
|
|
If your C compiler is gcc, you can use the | |||||
feedback
|