IDE?

Pages: 12
May 3, 2011 at 8:46am
Dear All
Can you please propose me for a compact size Integrated Development Environment for C programming for Windows?
Thank you
May 3, 2011 at 10:26am
May 3, 2011 at 2:36pm
Code Blocks, Netbeans , Eclipse, Dev CPP.

I prefer Eclipse, I hate Dev but it's very compact.
Code Blocks is awesome too but there is a problem.
In eclipse you will have to download the compiler separately from the IDE and also netbeans but this helps for both Netbeans and Eclipse http://netbeans.org/community/releases/69/cpp-setup-instructions.html
May 3, 2011 at 2:45pm
Dev-C++ was killed about 5 years ago, and since has been constantly reanimated by people who recommend it despite the fact that its included compiler is quite old and the IDE itself doesn't support some of the more modern features that are highly useful in an IDE of that mass.

Just saying. ;)

-Albatross
May 3, 2011 at 2:53pm
And MS Visual Studio Express of course.
May 3, 2011 at 4:20pm
"compact size" and MSVS don't match well...
May 4, 2011 at 4:29am
Thank you very much for your replies. Can you please let me know if these IDE come with complete online help for all of the instructions and headers with included examples?If not, where can I find such a complete online help?
Thank you
May 4, 2011 at 4:34am
Microsoft Visual Studio is awesome! My IDE of choice, granted I work for a company which gives me a free licensed distro. :D
May 4, 2011 at 5:22am
+1 CodeBlocks.

Ultimate++ is also excellent, especially if you intend to expand into C++.
May 4, 2011 at 7:55am
Thank you for your help. Can you please let me know if the same complete online help exists on the web?
May 4, 2011 at 8:07am
For a standard library header file reference, why not just use this site's documentation, or that on MSDN? The C Standard library is standard after all :P It shouldn't change too much from compiler to compiler.

The Code::Blocks manual in several languages:
http://www.codeblocks.org/user-manual

Mohamed Fouad said
also netbeans

I'm pretty sure you can download Netbeans with a compiler - I did it just the other day.

However, I'm not sure Netbeans is as lightweight as Code::Blocks anyway...
May 4, 2011 at 5:29pm
@Xander314
Also Netbeans for C/C++ only (which does not include Java, Python or any other plugin) is lightweight.
May 4, 2011 at 5:31pm
Okay, I retract my statement. I just checked and the download for Code::Blocks with MinGW is almost identical in size to Netbeans with a C++ compiler only :)
May 4, 2011 at 5:31pm
Here are links to Netbeans itself http://netbeans.org/downloads/index.html
And here is a link to how to install the compiler debugger etc.
http://netbeans.org/community/releases/69/cpp-setup-instructions.html
May 4, 2011 at 7:15pm
Is there a need for an IDE? All I use is KDE Kate and MinGW.
May 4, 2011 at 7:41pm
these aren't really IDEs, but notepad++ for windows and geany for linux. just compile it via command line.
May 9, 2011 at 10:42am
I installed Microsoft Visual Studio. Can you please let me know how can I add a compiler to be able to run my codes?
Thank you
May 9, 2011 at 10:50am
Visual Studio comes with a compiler. You already have it.
May 9, 2011 at 10:57am
So why the 'Run' option is empty my case?
May 9, 2011 at 11:06am
Have you created a project with source files yet?
Pages: 12