I would like to learn how to find out the version of my C/C++
in the Linux
operating system.
How could I do this through Terminal
?
I would like to learn how to find out the version of my C/C++
in the Linux
operating system.
How could I do this through Terminal
?
To know the version of your C compiler, this command should work:
gcc --version
or
gcc -v
Just type in a Linux terminal.
Note that the C compiler, C ++ compiler, libc, and libstdc ++ are different things from each other.