I\'m working on a Linux machine. Is there any system command to find the standard followed by the C compiler I\'m using?
If your C compiler is gcc, you can use the -std option to specify which C standard to follow. The default is gnu89. There's no general system command to determine the standard for any given compiler. You'll need to check the documentation.
-std