What is another alternative compiler for turbo C ++

I'm learning turbo C ++ and I don't like the old blue Turbo C ++ compiler.

Is there any graphical IDE and compiler for C ++ like Eclipse or whatever so I have a complete copy-paste?

+3


source to share


2 answers


IDE is what you are looking for. The compiler only does background work. There are many very good IDEs for C ++. I would recommend either using Eclipse CDT or Microsoft Visual Studio Express C ++ .



Both have a lot more to it than copy paste, which is code completion. It will soon be your best friend.

+2


source


Why use turbo C ++ in the 21st century?



You should use gcc (g ++ for compiling a C ++ program) as your compiler and use vi / emacs as your editor.

0


source







All Articles