up vote 10 down vote favorite
5
share [g+] share [fb]

So, I found out that one of my courses for the next term have C knowledge as a requirement leaving me to start learning C from the scratch (altough a bit familiar with the C-syntax through C#) and I'm looking for a good IDE to write in. I've never used any other IDEs than Visual Studio and Eclipse for respectively VB/C# and Java, and I've been very satisfied with both of them, especially VS.

I've been looking on several IDEs that's capable of compiling C code, and I found that almost all of them lack any kind of intellisense (auto-completion) near the level that I'm used to in VS when writing VB/C#.

So, which C IDEs can you recommend that preferably features a great intellisense/auto-complete?

link|improve this question
12  
Why not use Visual C++? Despite the name it treat source code as C and C only using a compiler flag. – Skurmedel Jun 4 '09 at 16:13
4  
All of the IDEs that support C++ also support C. For a list of questions regarding such IDEs, Google for "site:stackoverflow.com ide C" – anon Jun 4 '09 at 16:15
2  
I agree with everyone about Eclipse, but don't expect it to be as good as you'd expect with Java (or VS/C#). The static typing, strong typing and multitude of types in those languages allows the environment to be MUCH more helpful then it can with C. Good luck. – Bill K Jun 4 '09 at 16:19
I was not initially aware of the fact that any C++ compiler could compile C as well. I've tried out code blocks and VS using VC++ to compile C, and for now I've decided to go with Visual Studio since I really like the IDE. I'm not quite sure which reply should be marked as answer, as this more resembles an open discussion than an actual question with a defined answer. Should I convert it to a community wiki instead? – Qua Jun 4 '09 at 17:13
2  
@Qua, yes make this a Community Wiki. There is no specific answer. – NinethSense Jun 4 '09 at 17:44
show 3 more comments
feedback

21 Answers

up vote 29 down vote accepted

Just use Visual Studio! Start by creating an empty C++ project, then add .c and .h files. If your files are named .c and .h, it automatically uses the C compiler, and not the C++ one.

link|improve this answer
2  
Bonus - one can obtain Express Edition for free, and it's "good enough" for most purposes. – Jim Buck Jul 29 '09 at 23:13
feedback

I can't believe that no one has said vi yet.

link|improve this answer
2  
+1 vi man until I die. – Chris Lutz Jun 4 '09 at 17:31
21  
As long as you actually mean Vim of course. – richq Jun 4 '09 at 17:42
4  
There's an emacs command to do that. xkcd.com/378 – Randolpho Jun 4 '09 at 21:39
1  
vi is not an IDE. – rlbond Jun 5 '09 at 21:22
1  
[vim + make] rulez :) – Eliseo Ocampos Jun 26 '09 at 20:45
show 4 more comments
feedback

You know that you can use Eclipse for C too, right?

Also, emacs is still an option - you'll at least have street cred with the old school suspender wearing geeks.

link|improve this answer
3  
I contend that for writing C apps in a *nix environment, Emacs cannot be beat. – Hooray Im Helping Jun 4 '09 at 16:48
4  
@Hooray Sure it can; vim beats it soundly. – Adam Jaskiewicz Jun 4 '09 at 17:24
2  
feedback

I've used the Eclipse plugin to do C and been very happy with that. During my college days though I used Emacs. I'm not sure it could be called an IDE per se. But it has great syntax highlighting and it's lightweight so it's fast.

link|improve this answer
11  
I have never heard the words "emacs" and "light weight" and "fast" in the same sentence before :) – Will Mc Jun 4 '09 at 16:26
3  
Fair enough. But I'm comparing it to Eclipse. – kmorris511 Jun 4 '09 at 16:37
Since when has Eclipse a Doctor I can talk to? – pmr Dec 13 '09 at 23:02
Elipse has a great macro expand mode. – Roman A. Taycher Jun 7 '11 at 9:54
feedback

I have been using GNU Emacs as an editor for the past couple of years exclusively for C/C++ development on Linux and OS X. I have not dived any deeper into emacs-lisp other than some basic key bindings, shell commands, build commands, and GDB control, but it is very extensible. Because you are asking for an IDE here would be my build, GNU Emacs, Git, Google, and VirtualBox.

Git for version control, Emacs for the editor, Google for documentation, and VirtualBox for testing configurations on various systems (also is nice if you are running Windows and do not want to dual partition for Linux, vice versa, etc).

link|improve this answer
feedback

Notepad++

link|improve this answer
strictly speaking, not an ide – bobobobo Jul 30 '09 at 1:25
@bobobobo: Strictly speaking, neither are Emacs or Vim, but they both do the job well. – musicfreak Apr 5 '10 at 21:39
feedback

For Windows, you may want to check out lcc win32 and Pelles C, these are both very lightweight and freely available C IDEs, that also provide an integrated debugger, online help and other useful features.

The downloads are both less than 10 MB and it's easy to install/uninstall both of them. Also, they run both fine under WINE on Linux.

In my opinion, having a lightweight learning environment is essential when learning a new language, otherwise you are likely to possibly mostly learn to work within a certain environment (IDE), rather than learning the fundamentals first.

In other words, just installing, configuring and using huge IDEs such as Eclipse or MSVC++ Express can be daunting task for a newcomer, especially because both of these IDEs are so powerful. So, I would recommend to concentrate on getting familiar with compact tools and platform-agnostic stuff. Personally, I would hate to install several hundred MB of software tools, just to learn C.

A lightweight compiler such as lcc-win32, pelles or even tcc is a much better tool in my opinion.

Of course, eclipse can be very useful if you may need to also work on other platforms, because then, you can work with one environment on pretty much all platforms.

Also, if you do know that you'll mostly work with the MSVC++ IDE in the future, then using just that also for learning C is probably not a bad idea either, especially because you may already be familiar with some of its concept from working with C#.

However, note that learning C is not about learning how to work with MS Visual Studio, if you only ever know how to program in MSVS, you'll not be a very capable in general, simply because you are restricted to one specific platform and even working environment.

When learning how to drive a car, you are also not restricting yourself to one make and model, but instead generally learn how to drive most cars that follow standards and conventions.

If you were to restrict yourself to just one specific platform and environment, you would also reduce your employability, no matter if you're a driver or a programmer.

link|improve this answer
feedback

Codelite is a good IDE, it supports (both MS and GNU) C and C++, and it does code completion.

link|improve this answer
feedback

Code::Blocks is good, though it's technically C++.

link|improve this answer
Technically, it isn't - it is written in C++, but supports C compilers. – anon Jun 4 '09 at 16:13
True. They advertise it as a C++ IDE, but anything you can write in C, you can write in C++. – Chris Doggett Jun 4 '09 at 16:18
feedback

For the Java people migrating to C, both Eclipse and NetBeans have very good and full featured C/CPP development packs.

Also, for the Linux world there are Anjuta and KDevelop.

I think that even Emacs and Vi with the aid of ctags and cscope can provide a fair good autocompletion and code navigation support.

link|improve this answer
feedback

In fact there is a C/C++ Plugin for Eclipse as far as I know.

Have a look at: CDT

link|improve this answer
feedback

I use Eclipse with CDT, and it works well.

It works more or less like the JDT, so if you're familiar with Eclipse, then CDT is going to feel pretty familiar.

The only catch is, CDT will not come with the compiler, so it will require a separate download, installation and configuration, which may be a little bit difficult.

The CDT/User/FAQ has information on getting a compiler to use with the CDT.

link|improve this answer
feedback

Eclipse CDT is worth a look.

link|improve this answer
feedback

Here's another resource. I started it to be about C on Visual Studio but it became about C IDEs: http://stackoverflow.com/questions/28605/c-on-visual-studio

link|improve this answer
feedback

Haven't tried it, but Netbeans has a C/C++ version available. You can also download the C/C++ plugins if you already have it installed.

Thought I'd throw it out here for completeness sake.

link|improve this answer
feedback

Dev Bloodshed is pretty cool. Very light and fast.

http://www.bloodshed.net/devcpp.html

link|improve this answer
feedback

I don't think there is anything better than Slickedit when it comes to C. Just my opinion.

link|improve this answer
Have you used Eclipse? How do they compare (Features, not "Feel") – Bill K Jun 4 '09 at 16:17
feedback

I prefer code::blocks. It is open-source, though I use a *nix OS that isn't linux, so it doesn't work for me. I use Kate with it's command line box thing, as it is more "portable" than codeblocks.. or in a console I use vi or nano depending on what is available...

Also, notepad++ is viable.

link|improve this answer
feedback

I got my start on dev c++

http://www.bloodshed.net/devcpp.html

It's pretty solid and works with GCC on windows. Plus you don't need to worry about project files or anything like that, if you configure things correctly.

link|improve this answer
feedback

NetBeans is a mature IDE with good refactoring support, and other code-aware things like generating call graphs etc. You can easily plug in existing sources with a Makefile.

link|improve this answer
feedback

I can't believe nobody has mentioned Geany. It does an incredible job with C highlighting and completion, it's free and compiling and running your code is as easy as pressing F9, F5. Did I mention it loads fast, works on computers with low system resources and is supported on multiple OSes?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.