0
Which compiler is best for c++??
3 Answers
+ 2
I use Visual Studio Community Edition 2015 for projects, which is what I reccommend. Or, Notepad++ is also pretty nice.
+ 1
code blocks , or use visual c++ 2010 you can find it at microsoft website
0
If it's really just about the compiler, I would say clang is the best compiler available. It's fast, has better error messages than all other compilers I know, and its generated code runs quickly. Additionally, it does a lot of additional check g++ or the Visual Studio compiler doesn't have and it supports address, memory, thread and undefined behavior detection in the generated code (aka. sanitizers) for Linux 64.