Can any one suggest me a Best IDE for C programming ( With auto completion feature)?
Asked
Active
Viewed 1,978 times
3
-
Try a few. Use the one you like the best. VS2010 has "intellisense". – Oct 21 '10 at 05:51
-
which OS? linux/windows? – Aman Jain Oct 21 '10 at 05:51
-
possible duplicate of [Best C++ IDE or Editor for Windows](http://stackoverflow.com/questions/89275/best-c-ide-or-editor-for-windows) – AndiDog Oct 21 '10 at 05:54
-
Checkout the duplicate question: Short summary - there's no best IDE, tastes are different. Try the major IDEs yourself (VS2010, Eclipse, Code::Blocks, Netbeans, ...). – AndiDog Oct 21 '10 at 05:56
2 Answers
3
use vim with plugins like snipMate, c-support etc.

Aman Jain
- 10,927
- 15
- 50
- 63
-
-
1
-
you can use CTRL-n to autocomplete already entered words(either in the same file or from some preloaded dictionary), but I don't know of a way in which you can do API auto-completion e.g. like Eclipse or Visual Studio do. But I'm sure there should be some plugin for that, just that I am not aware of it. – Aman Jain Oct 21 '10 at 06:00