is there a decent IDE that supports C intellisense but not C++?
I use visual studio but I find that since the compiler is 开发者_如何转开发a c++ compiler I keep getting annoyed by all the c++ intelligence. id like to code in something that keeps me in c. Anyone have any recommendations?
Emacs with clang auto-completion has great support for C.
You can quickly switch between C and C++ using c-mode
and c++-mode
, even when using a C++ compiler (by default Emacs doesn't look at the compiler, but at the source file extension).
Xcode 3 will also stop suggesting C++ code when writing C and vice-versa. Xcode 4 will do this too, but you asked for a decent IDE.
精彩评论