How to install GCC and G ++ in GNU / Linux?

0

My question is: how to install gcc and g ++ in GNU / Linux (ubuntu)

I would like to know the installation command specifically, and the installation step by step. : D

    
asked by Cookie Rabbit 09.11.2016 в 20:08
source

1 answer

2

In Ubuntu you can do:

sudo apt-get install gcc

and

sudo apt-get install g++

That will activate the two packages (both are part of gcc ).

    
answered by 09.11.2016 / 20:25
source