PDA

View Full Version : c++ compiler ?


wo1olf
04-07-2007, 05:57 PM
I can't install ms studio at home, but i have notePad. Is there any freeware compiler that i can use to run and debug my code & programm ?

Voetsjoeba
04-07-2007, 06:54 PM
I think MinGW comes with gcc: http://www.mingw.org/

Jeff Wheeler
04-07-2007, 07:42 PM
GCC.

MTsoul
04-07-2007, 11:52 PM
Does GCC compile Windows programs? I always thought it was just for *nix.

Jeff Wheeler
04-08-2007, 12:22 AM
I thought so… could be wrong, though.

TheColonial
04-08-2007, 04:33 AM
Hi all,

There are quite a few options available to you, here are a few:

Visual C++ Express (http://msdn.microsoft.com/vstudio/express/visualc/default.aspx)
Bloodshed Dev C++ (http://www.bloodshed.net/devcpp.html) (comes with MingW)
CodeBlocks (http://www.codeblocks.org/) (again with MingW).
Digital Mars (http://www.digitalmars.com/download/dmcpp.html)

FYI, MingW is essentially GCC for Windows :)

Cheers
OJ

Jeff Wheeler
04-08-2007, 12:07 PM
Ah, okay. I suppose that makes sense.