0

Which compiler is best for c++??

13th Nov 2016, 3:21 PM
Suraj Kumar Mishra
Suraj Kumar Mishra - avatar
3 Answers
+ 2
I use Visual Studio Community Edition 2015 for projects, which is what I reccommend. Or, Notepad++ is also pretty nice.
13th Nov 2016, 4:01 PM
Keto Z
Keto Z - avatar
+ 1
code blocks , or use visual c++ 2010 you can find it at microsoft website
13th Nov 2016, 3:37 PM
Abdulrahman Khaled
Abdulrahman Khaled - avatar
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.
13th Nov 2016, 6:49 PM
Stefan
Stefan - avatar