Results 1 to 5 of 5
hi,
I am new to UBUNTU , i want to install c++ in ubuntu
can anybody help me how to install c++
how to execute .cpp files...
- 03-02-2009 #1Just Joined!
- Join Date
- Feb 2009
- Posts
- 2
Installing C++ in linux
hi,
I am new to UBUNTU , i want to install c++ in ubuntu
can anybody help me how to install c++
how to execute .cpp files
- 03-02-2009 #2use g++ command to compile .cpp files# apt-get install g++
then execute# g++ something.cpp -o something.out
# ./something.out
- 03-02-2009 #3
You may want to do
That should install the compilers you need and other libraries you may need.Code:sudo apt-get insall build-essential
- 03-06-2009 #4Just Joined!
- Join Date
- Mar 2009
- Posts
- 4
Hello
dose ubuntu have a grafic user intface for c++? something like bloodshed
gogo
oh and that command should be: sudo apt-get install build-essential
- 03-14-2009 #5


Reply With Quote
