GCC (GNU Compiler Collection) is a very popular compiler collection, which supports multiple programming languages, such as C, C++, Objective-C, Fortran, Ada, etc. GCC is not only widely used in Linux systems, but also can run on various UNIX systems and Windows operating systems.
In Ubuntu, you can use the apt get command to install the gcc compiler. Here are some simple steps:
Open the terminal and update the package list with the following command:
sudo apt-get update
Then install the gcc compiler using the following command:
sudo apt-get install gcc
After installation, you can use the following command to check the gcc version information:
gcc --version
Now, your Ubuntu system has installed the gcc compiler.