0 Members and 1 Guest are viewing this topic.
VC++ comes with the compiler and is probably one of Microsoft's best products. Dev-cpp is good to start with c++ but VC++ is simply, the best for Windows.
All the mentioned IDEs (except VS) use MinGW/gcc as standard compiler (C::B can be easily configured to use VC++, used that one already). The main difference between VC++ and gcc that I expierenced is the optimization. VC++ optimizes the machine code much more.
The various VS.NET incarnations are good provided you have gobs of RAM at your disposal, or are targeting the CLI to begin with. When writing and testing memory hungry programs like games or simulations, and could really give a flip about the CLI in general, it's just too "fat" for the job.
Quote from: Pragma on August 07, 2008, 05:35:20 pmThe various VS.NET incarnations are good provided you have gobs of RAM at your disposal, or are targeting the CLI to begin with. When writing and testing memory hungry programs like games or simulations, and could really give a flip about the CLI in general, it's just too "fat" for the job.VS.NET isn't limited to CLI/managed code, you can also compile unmanaged code.