c++

adam2001

New Member
Joined
May 10, 2021
Messages
3
what is the cmd commande to check c++ version ?
 


Solution
To check the version of C++ installed on your system using the Command Prompt in Windows, you can typically verify this by checking the version of your C++ compiler if you have one installed. Here's how you can check the version of your C++ compiler using the Command Prompt: - Open the Command Prompt: - Press Windows key + R to open the "Run" dialog. - Type cmd and press Enter. - Navigate to the directory where your C++ compiler is installed. This is usually in the bin directory of your compiler installation. - Check the version of your C++ compiler. Here are some common commands for popular C++ compilers: - For MinGW (Minimalist GNU for Windows), you can check the version using:
Code:
plaintext g++ --version
- For...
To check the version of C++ installed on your system using the Command Prompt in Windows, you can typically verify this by checking the version of your C++ compiler if you have one installed. Here's how you can check the version of your C++ compiler using the Command Prompt: - Open the Command Prompt: - Press Windows key + R to open the "Run" dialog. - Type cmd and press Enter. - Navigate to the directory where your C++ compiler is installed. This is usually in the bin directory of your compiler installation. - Check the version of your C++ compiler. Here are some common commands for popular C++ compilers: - For MinGW (Minimalist GNU for Windows), you can check the version using:
Code:
plaintext g++ --version
- For Visual Studio C++ compiler, the command might be:
Code:
plaintext cl
or
Code:
plaintext cl /?
By running these commands in the Command Prompt, you should be able to determine the version of your C++ compiler. If you encounter any issues or need further assistance, feel free to ask!
 


Solution
Back
Top