AS far as C++ in Linux I use G++ , and Anjuta ...
See G++ needs to be used from commands from Terminal.. if u want to compile while Anjuta has inbuilt like Turbo C..
Here are steps u need to do:--
For G++ Installation and usage :---
To install G++ 1'st open Terminall.. and type this
but you should probably do (to install everything you might need in ways of developement): Type this after the above commands installation finished. :cool2:
Code:
sudo apt-get install build-essential
That will also include gcc and g++
Now usage of G++/GCC....
simple, use editor to type in your C/C++ code. save it with the .c or .cpp extension.
Then exit form the editor, in terminal type :
cc filename.c
This will create the
a.out file.
now type
./a.out
to get the output
to specify a custom name, u need :
Code:
cc -o outputfilename sourcefile.c
About Anjuta :
To install type thiis in Terminal
Code:
sudo apt-get install anjuta
It will have a button to press to compile your code.:bleh:

hyeah:
As far as C++ guide is concerned try this beginners guide written by me
http://www.techenclave.com/forums/tutorial-learn-all-basics-c-language-87986.html
Hope it helps
Peas Ds
