hi dudes, i m a new user of RHEL-6. how will i start programming of c / c++ in this environment ? where will i type my code & how will i execute ? are any extra packages needs to be installed ? if yes, from where will i get those packages?
waiting for reply from someone......
Install gcc (GNU Compiler Collection), g++ and make on your system. Then use your favorite editor to create source files and a Makefile. Run make and it will build your application using the rules specified in your Makefile.
I also recommend you to use an IDE like : eclipse IDE for C/C++, which makes life easier .
There is also some books out there about GCC compiler and how to use it correctly .