How can I know which version of the C++ "standard library" is installed?
I would like to install the C++ standard library documentation (following the answers in Download C++ reference) but I do not know which version of library is installed in my Ubuntu.
Solution 1:
Simple way to find the version of C++ standard library is
gcc --version
Hope this helps