Best compiler for c/c++

Status
Not open for further replies.

kane44

Newbie
Joined
Jan 29, 2012
Messages
2
Reaction score
0
Hi,
I recently started learning c++and i just want to know which is world best compiler for c/c++.
 
Console or Plain Codes, use visual studio. The best IDE there is for me. For the GUI, if you want to still use native code, use borland(For faster process as you can drag and drop controls), then just reference your vs-created dlls. If you dont mind using .net gui, you can use vs all the way.
 
How do you quantify best? Fastest? Smallest compiled executable? Lowest memory usage when running your app? Really the answer depends on what you app is doing.

If you want a straight answer then the Intel compiler. It hamstrings AMD processors though by not using SSE instructions on them, just on Intel chips.

EDIT - Do you really mean what is the best IDE?
 
Last edited:
if you want a compiler for c++, we use microsoft visual studio in my University. I tried it and it's way better than others.
 
Microsoft Visual Studio. When you're proficient enough, you can switch to MinGW.
 
Knowledge of GCC/G++ toolchain will help you a lot in your programming life. For very quick things in ANSI C, you can try Tiny C Compiler (TCC) by Fabrice Bellard.
 
Use Dev C++ it's simple, liteweight and works great !! :)
 
For compiler GCC is the winner hands down. For windows environment MingW...
IDE: Eclipse CDT -- OR -- Code::Blocks.
 
Status
Not open for further replies.
Back
Top