Question:
i need a good c++ compiler?
2013-10-07 11:15:35 UTC
hello, I recently downloaded VB 2010 express and C++ express but I get an error everytime I debug/build the programme. http://www.vbforums.com/showthread.php?737421-Erro-on-VB-2010-(-im-new)&p=4524007#post4524007 that is a link for my problem ( I asked a question on fourm)

im looking for a C++ that isn't the Microsoft one as it gives me an error, or if you could help me fix the error that would be good 2. but if not could you recommend a list of some good free C++ compilers
thanks
Six answers:
2013-10-07 11:26:59 UTC
MSVC10 (Visual Studio 2010 Express) isn't up to date to the latest C++ standard (C++11, 2011).

I recommend you go get Visual Studio 2013 Express Release-Candidate. It has the best C++11 so far.



devcpp and devc++ (bloodshed Dev-C++) is not a compiler, because it is an IDE. The compiler it uses under the hood is MinGW32 (Minimalist GNU for Windows) which is a fork of GCC (GNU Compiler Collection).



There's also an open-source compiler that's in-development called Clang.



Get them here:

MSVC2013RC - http://www.microsoft.com/visualstudio/eng/2013-downloads#d-2013-express

MinGW32 - http://sourceforge.net/projects/mingw/files/

Clang - http://clang.llvm.org/get_started.html
2013-10-07 11:19:00 UTC
Uninstall it completely. Download Visual Studio 2012 Express (newer).
jplatt39
2013-10-07 11:22:34 UTC
GNU tools are available as either:



http://www.mingw.org

or

http://www.cygwin.com



Code:Blocks, Dev C++ and Eclipse CDT all us MinGW for a compiler but you can us it directly with make to handle project files and gdb to step through your programs.
?
2013-10-07 11:35:20 UTC
Dev c++

codeblocks

codelite
DrZoo
2013-10-07 14:31:12 UTC
GNU's g compiler



http://www.claremontmckenna.edu/pages/faculty/alee/g /g .html
2013-10-07 11:18:17 UTC
There is one I know of it is called either devcpp or devc++ try that


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...