The C application development IDE you admire the most

I am looking for a good integrated development environment for developing C applications for Windows and Linux.

The IDE must have:

  • good interface
  • simple file management
  • autofill and
  • any additional parameters.

Tell me which IDE you most admire about these tasks.

  • To develop shared PC applications
  • For developing embedded applications in C

If you think this is a more specific issue, you can also accept it as a general case. Thank you in advance.

+4
source share
10 answers

For general PC development - Microsoft Visual Studio + VisualAssist

For large-scale development, you are unlikely to find anything better than Source Insight.

If you need a cross-platform IDE, check out the Eclipse CDT

+8
source

For both purposes, I suggest Eclipse .

+1
source

I would describe Visual Studio as the most functional and convenient place for writing and debugging code, but it has a narrow target audience - Windows developers.

As others have said, Eclipse is probably the best choice, a large array of available plugins will come in handy too . For example, if you want to switch to a new source code repository, there is a possibility that the Eclipse plugin has already been written for it. You don't have that luxury with most other IDEs.

+1
source

Well, when I work with CI, use Vim , with the right plugins, I think this is the best IDE for C around. In order to get used to it, you need a little practice, but as soon as you do this, you will simply fly through your files.

+1
source

Besides TextMate in OS X, which is a more fully-featured text editor, I would say that NetBeans or Eclipse.

EDIT: yes, if you have a Mac, you can make PC development using VMWare / Paralles as easy as on a β€œreal” PC, and you get OS X as a bonus.

0
source

I would say that Eclipse is the best choice. Eclipse Page

0
source

Drop Code :: Blocks , it's pretty good, it's C, and is available on Windows and Linux on request.

0
source

Even if it was first developed for JAVA, I like the NetBeans IDE because it has some nice features, and it knows about C.

CVS / SVN plugins available.

0
source

SlickEdit is a good cross-platform IDE with autocomplete, macros, emulation mode for various text editors, refactoring options, etc. .... though.

0
source

There are also helpful tips on the C IDE: C in Visual Studio

I asked about using C in Visual Studio, but the answers contain suggestions for various IDEs

0
source

All Articles