vote up 10 vote down star
10

DevC++, Visual Studio, Ch, Vim, gedit, what else?

flag

26 Answers

vote up 37 vote down check

Definitely - Visual Studio + some third party plugins installed, like VisualAssist

link|flag
1  
I work in Linux. Hard to get VS working for me. – tloach Dec 3 '08 at 19:45
Yes I'm also used to Linux, gcc and stuff. But I have to say developing in VS is much more comfortable, I especially liked the graphical debugger.. You may consider developing under windows, as you can use VS and gcc there. – Nils Dec 11 '08 at 11:18
Thanks for the suggestion of VisualAssist. Giving it a dl. Looks great – Dan Revell Dec 11 '08 at 23:56
VS Absolutely Rocks! The - Best - IDE - Ever! – Mehrdad Afshari Jan 3 '09 at 20:02
Would you consider enumerating plugins you use? It'd be helpful. Also, do you use latest version of VS, or earlier one? – Alexander Abramov Jan 24 at 10:52
vote up 4 vote down

Check this out.

link|flag
I include Windows in my Poll ;P – Abhishek Mishra Sep 18 '08 at 15:00
vote up 3 vote down

Bloodshead if you're looking for something simple and easy to use, and Windows

link|flag
Last update was 2005. Does anyone maintain Bloodshead? – Doug T. Nov 10 '08 at 15:03
It´s not maintened anymore. – Decio Lira Nov 10 '08 at 15:57
Code::Blocks is worlds better than Bloodshead ever was. And it's actively maintained! – Adam Jan 23 '09 at 3:31
If Code::Blocks doesn't require you to put system("PAUSE"); before returning from main() -- or any such unportable hack -- then it has my vote! – system PAUSE Mar 23 at 22:30
vote up 1 vote down

Under Windows, I'd suggest Visual Studio Express. Free and the feature set (especially the excellent debugger) can't be beat.

link|flag
vote up 2 vote down

One that works best for you. I don't think there is a universal IDE that will fit everyone.

If you are developing a Microsoft C++ app, Visual Studio might be the logical choice. If you are working in a *nix environment, then vim or emacs is a good bet (again, depending on your needs).

Can you tell us more about what kind of projects you are working on?

link|flag
vote up 10 vote down

Eclipse and the CDT (C/C++ Development Toolkit) is quickly becoming a favorite of mine. The editor could use some work, but the extensibility of Eclipse via plug-ins is a great way to "create your own" IDE...

link|flag
1  
CDT is not exactly a high priority project compared to the Java support in eclipse.. – Nils Dec 11 '08 at 11:20
vote up 0 vote down

basically I'm working on programming challenges coming up in topcoder.com & spoj.pl so I need to keep writing many small apps quickly and comfortably. Right now DevC++ suits the most, while on linux vim comes handy, any other IDE which might save me more time on these contests? (PS: It's not a project dev, but rapid coding and finding faster smarter solutions => space for fast experiments by code modifications)

link|flag
vote up 1 vote down

I prefer netbeans ide for C/C++ netbeans C++. You can test your code, document, use all the available plugins to enhance your productivity.

I have tried eclipse but I like netbeans more...

link|flag
vote up 8 vote down

C and C++ are of course much older than Java, and are still the languages of choice for many high-profile open-source projects. Based on that, on could guess there would be many other strong cross-platform and open-source C/C++ IDEs. You’ll find that NetBeans C/C++ Pack may be the strongest one around, however. Let’s look at some C/C++ Pack’s competitors.

DevCPP

DevCPP is very popular among Windows developers. It’s lightweight, well supported, and, like NetBeans, relies on external make tools and C/C++ compilers. Additionally, it supports a wide variety of C/C++ compilers. Though DevCPP is written using Borland Delphi, an attempt to port it to Linux (using Kylix) failed. So DevCPP is not an option for cross-platform C/C++ development.

OpenWatcom

The Watcom C/C++ compiler is cross-platform but offers no Unix support; it targets Windows and OS/2. Though not very user-friendly, it comes with an integrated debugger and a help system. It was once the compiler of choice for high-performance C/C++ applications, with its enhanced code optimizer and support for all Intel processor variants. When Sybase bought Watcom, though, the C/C++ compilers and IDEs fell into obscurity. Later the tools were released as open-source software. Nowadays, it looks like the community project is going well, but there’s still no support for Unix and Linux systems. This makes OpenWatcom essentially a Windows-only IDE and not suitable for our purposes.

Anjuta

Anjuta is based on the complete GNU toolset for C/C++ development. In addition to the tools supported by C/C++ Pack, it supports the GNU Autotools, a set of scripts that simplifies generating Makefiles for multiple operating systems and compilers. It’s also focused on GNOME development, so it provides templates for GTK, Gnome and Glade applications.

While DevCPP and OpenWatcom are Windows-only, Anjuta and KDeveloper (see next) are Unix-only. Some users have reported success running both under Cygwin, but they are still far from providing robust support for compiling and debugging native Windows applications.

For Unix developers, Anjuta provides integrated access to man pages and GNOME documentation. Its integrated debugger, like C/C++ Pack, relies on GDB. The latest releases provide integration with Glade, the Gnome visual UI builder.

KDevelop

Everything said before about Anjuta applies to KDevelop, if you just replace GTK/Glade/GNOME with Qt/QtDesigner/KDE. Anjuta and KDevelop are strong C/C++ IDEs for open-source desktops, but they don’t cut it as cross-platform IDEs.

Eclipse CDT

C/C++ development support in Eclipse is almost as old as Eclipse IDE itself, but it has not matured as fast as the support for Java. Although currently labeled as release 4.0, Eclipse CDT doesn’t provide many features beyond those in NetBeans C/C++ Pack (which is younger).

Also like NetBeans, Eclipse CDT doesn’t integrate yet with visual development tools for Gnome, KDE or Windows. It has the advantage of supporting compilers other than the GNU compilers, but this won’t be a real plus if your goal is developing cross-platform C code.

Red Hat is developing GNU Autotools and RPM generation plug-ins which, when they are released as production level, may become Eclipse CDT’s real advantage over NetBeans C/C++ Pack (at least for Unix/Linux users). On the other hand, NetBeans is the development IDE for Open Solaris, so don’t expect it to fall short in enhancements for Unix developers.

Conclusion

The only flaw one would find in C/C++ Pack, comparing it to other open-source alternatives for C/C++ development, is the lack of operating-system and third-party library documentation support in the help system. That would be also its main drawback when compared to proprietary C/C++ IDEs. But if you evaluate alternatives for cross-platform C/C++ development, the strongest (and only) competitor for NetBeans is also its main competitor in the Java space, that is, Eclipse.

link|flag
Trolltech has been offering Qt4 Eclipse integration plug-in for a while. With CDT 5.0 and Qt4 Eclipse Integration 1.4 it makes a decent development environment for Qt4 C++ Applications – Imran Sep 18 '08 at 16:47
How is it in such a large list you missed Code::Blocks? – Adam Jan 23 '09 at 3:30
vote up 4 vote down

I'd vote for Visual Studio plus VisualAssist as an add-on.

link|flag
vote up 0 vote down

Best by what measure? This isn't a question, this is an invitation to discussion. And is "integrated" best?

Unix is the original development environment, and probably still the "best" (by my metrics). Part of its power is that it is not "integrated". But I guess you could argue that with plugins IDEs stop being integrated as well.

If your metrics are something like "lets brain-damaged programmers appear to be productive", you might want to choose something like Visual Studio or Eclipse.

link|flag
+1 for hinting that VS or Eclipse are for brain damaged programmers – Adam Hawes Mar 27 at 1:16
vote up 10 vote down

Seems that nobody mentioned Code::Blocks.

It works equally well on Linux and Windows, has support for multiple compilers (for example on windows I use it to compile the library I'm writing with gcc, Digital Mars C, Borland C and Microsoft C++) to check if I did not came across an incompatibility).

link|flag
yeah i like code blocks, after visual studio, dev & codeblocks are two ways to go – Abhishek Mishra Sep 27 '08 at 11:06
Visual Studio is the clear winner for large commercial projects. But beyond that, I love the simplicity and lightweight nature of Code::Blocks. I firmly believe you should be able to compile a single source file without HAVING to set up a project. – Adam Jan 23 '09 at 3:29
vote up 1 vote down

I have to agree with visual studio. You can get a cut down version of Visual Studio 2008 (called Express) from Microsoft for free.

link|flag
vote up 3 vote down

Visual Studio 2008 (for good code editor)
C++Builder 2009 (for having no problems with boost and other libraries)

link|flag
vote up 22 vote down

Windows

Visual Studio (from 2003 onwards) is the best C++ IDE for windows systems. For anything less than that version, their C++ compiler is way too broken.
But i'm using emacs anyway, since that's what I'm used to. I'm using emacs + ecb + cedet together with cl (Microsofts' compiler)

Linux

Within Linux I'm using emacs23 (font-antialiasing on) + ecb + cedet. Whether emacs/vim or eclipse is the best IDE for Linux really is a matter of taste. I'm prefering emacs, some prefer other tools. Screenshot of my emacs in action:

link|flag
1  
Wow, impressive. Can you post your .emacs file too? – barneytron Jan 3 '09 at 20:05
imageshack deleted the image -.- – Johannes Schaub - litb Sep 26 at 17:53
It's nothing really special. It's emacs itself that makes it look nicely :) It looks that way pretty much by its official release, and just installing ecb and cedet :) – Johannes Schaub - litb Oct 28 at 15:12
vote up 0 vote down

CodeLite a powerful open-source, cross platform IDE for C/C++ is the best after Visual Studio

link|flag
vote up 0 vote down

The Zeus IDE.

alt text

link|flag
vote up 3 vote down

Visual Slickedit is really nice if you're not interested in VS.

link|flag
Slickedit is probably one of the best IDEs out there for general programming work. Rumor has it that many of the folks at Microsoft used Slickedit to develop large parts of their codebase. Microsoft's 'intellisense' comes straight from SlickEdit, that's for sure. – Robert P Mar 27 at 1:06
vote up 1 vote down

A lot of people have said DevC++, and I agree this is one of the best IDEs, but it has some bugs and nobody is working on updating it at the moment. For that reason, I usually use wxDevC++, which was designed for use of wxWidgets, but they also managed to fix some of the bugs in DevC++.

link|flag
A lot of people who learn C++ using Dev-C++ will also, unfortunately, acquire the ridiculous habit of putting system("PAUSE"); at the end of their programs. This is unportable and an absurd coding practice. – system PAUSE Mar 23 at 22:28
vote up 0 vote down

here are your opensource choices that might be as fast as Bloodshed...:

CodeBlocks (Opensource, still ongoing development)
Relo IDE
CodeLite

link|flag
vote up 1 vote down

I'm fond of KDevelop. Has worked well for me in the past.

Visual Studio is better in a lot of ways, but it's big, slow and not free - neither free as in freedom nor as in beer (yes, I'm aware of Express, which is good for many things; however it does lack some features such as OpenMP and a 64-bit compiler, whereas KDevelop isn't crippleware). I use VS when work is paying for it, but I'm not willing to spend that much of my own money on it.

link|flag
vote up 1 vote down

Why do you need an IDE?

VIM is all you need for anything. Learn VIM and Makefiles and you'll be set for anything.

link|flag
vote up 0 vote down

I am surprised none recommended Source Insight . It is an excellent Source Browser and very easy to use Source Editor.

link|flag
vote up 0 vote down

Qt Creator is gaining popularity for those who like the Qt toolkit and cross-platform development! I hope they keep it unbloated in future versions...

link|flag
vote up 0 vote down

Visual Studio/C++ simply because its on a very short list of systems with edit-and-continue.

link|flag
vote up 0 vote down

I used Eclipse a loot for developing C++ on linux, however i switched to gvim a while ago and found it to be really satisfying.

link|flag

Your Answer

Get an OpenID
or

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