[Solved] How can install cpp compiler on Ubuntu terminal [closed]


Do the following steps:

  1. Open your terminal (or) command-line window.

  2. Type the following command and then press ENTER

    sudo apt-get update
    
  3. It will ask for the password. Type your sudo user password and press ENTER

  4. Then type the following command and then press ENTER again.

    sudo apt-get install g++
    

This will install the g++ compiler in Ubuntu

6

solved How can install cpp compiler on Ubuntu terminal [closed]