vote up 7 vote down star
3

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?

P.S. I searched around on this site for similar threads, but did not find any covering C IDEs.

flag
9  
Why not use Visual C++? Despite the name it treat source code as C and C only using a compiler flag. – Skurmedel Jun 4 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" – Neil Butterworth Jun 4 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 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 at 17:13
2  
@Qua, yes make this a Community Wiki. There is no specific answer. – NinethSense Jun 4 at 17:44
show 1 more comment

19 Answers

vote up 20 vote down check

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|flag
Bonus - one can obtain Express Edition for free, and it's "good enough" for most purposes. – Jim Buck Jul 29 at 23:13
vote up 5 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

Dev Bloodshed is pretty cool. Very light and fast.

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

link|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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

link|flag
vote up 22 vote down

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

link|flag
2  
+1 vi man until I die. – Chris Lutz Jun 4 at 17:31
10  
As long as you actually mean Vim of course. – rq Jun 4 at 17:42
You haven't truly lived until you've been inside your .vimrc. – Tom Jun 4 at 18:15
3  
There's an emacs command to do that. xkcd.com/378 – Randolpho Jun 4 at 21:39
1  
[vim + make] rulez :) – Eliseo Ocampos Jun 26 at 20:45
show 4 more comments
vote up 3 vote down

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|flag
vote up 2 vote down

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|flag
vote up 5 vote down

Notepad++

link|flag
strictly speaking, not an ide – bobobobo Jul 30 at 1:25
vote up 2 vote down

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|flag
vote up 0 vote down

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

link|flag
Have you used Eclipse? How do they compare (Features, not "Feel") – Bill K Jun 4 at 16:17
vote up 2 vote down

Eclipse CDT is worth a look.

link|flag
vote up 2 vote down

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|flag
vote up 21 vote down

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|flag
2  
I contend that for writing C apps in a *nix environment, Emacs cannot be beat. – Hooray Im Helping Jun 4 at 16:48
2  
@Hooray Sure it can; vim beats it soundly. – Adam Jaskiewicz Jun 4 at 17:24
1  
perturb.org/images/1/dilbert-unix.png – rlbond Jun 5 at 21:19
vote up 2 vote down

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

Have a look at: CDT

link|flag
vote up 9 vote down

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|flag
9  
I have never heard the words "emacs" and "light weight" and "fast" in the same sentence before :) – Will Mc Jun 4 at 16:26
2  
Fair enough. But I'm comparing it to Eclipse. – kmorris511 Jun 4 at 16:37
vote up 3 vote down

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

link|flag
Technically, it isn't - it is written in C++, but supports C compilers. – Neil Butterworth Jun 4 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 at 16:18

Your Answer

Get an OpenID
or

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