tags:

views:

399

answers:

4

Possible Duplicate:
Best C++ IDE or Editor for Windows

There are couple of GUi compilers for C++ to work on Windows platform like VC++,Dev C++, etc. which one is the best used for testing some sample programs for a quick analysis of any small applications.I am presently using Dev C++ But is there a better compiler that anybody prefer which is easy to use on the desktop?

+4  A: 

Microsoft Visual C++ 2010 Express

Daniel A. White
I also vote for VS 2010 Express
grigy
A: 

My favorite is Borland C++ Builder but it's not free

Northern
+2  A: 

I currently use Visual C++ 2008 Express edition.

QtCreator is pretty good too.

StackedCrooked
+1 for qtcreator. That backed with gcc 4.4 or 4.5 is awesomeness²
rubenvb
+1  A: 

There are no GUI compilers as far as I am aware, never mind a best one. DevC++ shells out to some variety of gcc (as does Code::Blocks) and VC++ shells out to cl.exe.

Logan Capaldo