• 0

Why you shouldn't use Dev-C++


Question

Old myths are tough to dispel, and among these, that Dev-C++ is somehow still a good IDE today. Teachers recommend it in universities (yes!) and beginners don't understand why their perfectly legit programs don't compile.

Someone at cplusplus.com'sums posted a good article about it recently, so I thought I'd spread the word. Hopefully the more it'll spread the less Dev-C++ will be used.

  Quote
Why we've deprecated Dev-C++

It all boils down to one reason:

Dev-C++ hasn't been updated since 2005.

From there, there are 3 main problems with the lack of any updating.

The included MinGW is obsolete.

The many known bugs may never be fixed.

The IDE lacks the features of more modern IDEs.

I'll go over each of these in order.

The included MinGW is obsolete.

MinGW is an irregular acronym which stands for "Minimalist GNU for Windows". It includes a various set of tools commonly found on many *nixes including the g++ compiler and gdb debugger, which Dev-C++ makes use of.

A problem with Dev-C++ not being updated in computer centuries is that the bundled MinGW is several years old, and as a result the compiler doesn't work nearly as well on new systems as a hot-out-of-the-oven dish of MinGW's g++ would. It's a whole major version behind... Read the rest at C++ : Forum : Articles : Why we've deprecated Dev-C++.

Link to comment
https://www.neowin.net/forum/topic/986680-why-you-shouldnt-use-dev-c/
Share on other sites

24 answers to this question

Recommended Posts

  • 0

People who still program in dev-c++ need to just quite programming. It's like still programming in Visual Studio 6. You ain't learning standard C++. Hell you ain't even getting anything beneficial from it. Except hacks to get around pre-ansi C++ standard, that pretty much won't even work on today's standard compilers. If your class still requires you to use Dev-C++. You might as well slap them and quit. Because you are just learning how to programming pre-ansi pre-C++ standard.

  • 0

People still use Dev-C++? Holy outdated moly Batman!

I did actually hear a rumour at one point that Dev-C++ is still active, you just have to download and compile from their SVN repo. This is just a rumour though, Eclipse is still better, so there's no point bothering :p

  • 0

They force us to use it in my university (UWS).

Although most of us in class would prefer to use somethin else, unfortunately all of our assignments and whatnot that we submit are all complied and checked in Dev C++.

To add, they also changed the dedicated computers for the Computing students to Macs. We are advised to virtually boot Windows 7. Why they bought 500+ macs, just to boot a virtual copy of Windows 7 is beyond me.

  • 0
  On 02/04/2011 at 15:53, Majesticmerc said:

People still use Dev-C++? Holy outdated moly Batman!

I did actually hear a rumour at one point that Dev-C++ is still active, you just have to download and compile from their SVN repo. This is just a rumour though, Eclipse is still better, so there's no point bothering :p

Universities in particular can be quite slow to adapt and update what they teach.

When I was at uni in 2006, one of the classes I took was heavily into NetBIOS. What a waste of time.

  • 0

The main reason that it's used in universities I believe is that it's one of the only single-install packages that gets you up and running for standard C programming. No messing with cygwin or minGW, just one installer. Especially for an intro class the ease of setup is important, you don't want to spend weeks out of the semester trying to get everyone set up to compile programs.

I remember trying VC++ Express once to do a C programming assignment, and it seemed to me like it wasn't really set up for that. I ended up just using XCode (which has a standard project template for a plain, no-frills, platform agnostic command-line C application) while everyone else had weird errors with Dev C++.

I witnessed once a program that looked perfectly fine. I read over the whole thing a few times, and it would not compile. Finally they quit Dev C++, loaded it back up with the same project file, and it compiled just fine! :blink:

I'm sure that if there were an alternative free IDE that was easy to install, modern, well supported, and less buggy and had a simple C program template that it would gain usage fairly quickly. Also being GCC-based or at least very GCC-compatible is important. Lots of professors I know code on OSX or Linux systems.

VC++ Express is great, especially for being a free app, but to me it seems pretty cluttered and also overkill for an Intro to C class.

  • 0
  On 16/04/2011 at 10:27, Stetson said:

The main reason that it's used in universities I believe is that it's one of the only single-install packages that gets you up and running for standard C programming. No messing with cygwin or minGW, just one installer.

Well the question IMHO should be: If they are using Windows why do they use cygwin or minGW? If they want to use Unix-tools, why not use a Linux to begin with?

  On 16/04/2011 at 10:27, Stetson said:

I remember trying VC++ Express once to do a C programming assignment, and it seemed to me like it wasn't really set up for that. I ended up just using XCode (which has a standard project template for a plain, no-frills, platform agnostic command-line C application) while everyone else had weird errors with Dev C++.

Personally I never had problems with VC++ Express to do C-programming, but I never did C99, which is not fully supported in VC++ Express - and never will be for that matter?

  • 0
  On 16/04/2011 at 10:27, Stetson said:
I'm sure that if there were an alternative free IDE that was easy to install, modern, well supported, and less buggy and had a simple C program template that it would gain usage fairly quickly. Also being GCC-based or at least very GCC-compatible is important. Lots of professors I know code on OSX or Linux systems.
Code::Blocks?
  • 0

When I took my C++ class last semester they made us use Dev-C++. I absolutely hated it. (Granted, this was at a Community College, but they did have access to Visual Studio 2008 (They wouldn't update to 2010 for whatever reason).

Now whenever I program in C++ I use my copy of VS 2010, but my classes are more focused on VB now anyway.

  • 0
  On 16/04/2011 at 11:15, MFH said:

Well the question IMHO should be: If they are using Windows why do they use cygwin or minGW? If they want to use Unix-tools, why not use a Linux to begin with?

While the professors can use Linux all they want, chances are the 200 kids sitting in the lecture hall have Windows laptops, with a few Macbooks here and there.

  On 16/04/2011 at 20:23, Dr_Asik said:

Code::Blocks?

I believe that still requires you to do your own install of Cygwin or MinGW.

  • 0
  On 31/03/2011 at 03:29, ZekeComa said:

People who still program in dev-c++ need to just quite programming. It's like still programming in Visual Studio 6. You ain't learning standard C++. Hell you ain't even getting anything beneficial from it. Except hacks to get around pre-ansi C++ standard, that pretty much won't even work on today's standard compilers. If your class still requires you to use Dev-C++. You might as well slap them and quit. Because you are just learning how to programming pre-ansi pre-C++ standard.

If somebody builds a working program that does what they intended it to do in Dev-C++ then they have succeeded in what they set out to do and certainly don't need to "just quite programming." :rolleyes:

  • 0
  On 17/04/2011 at 07:46, ZekeComa said:

I wouldn't suggest using Code::Blocks, it's a crappy IDE. If you're Windows use Visual Studio 2010, Linux use KDevelop4, Mac OS X, use XCode.

Care to elaborate why Kdevelop would be better than Code::Blocks on Linux? I've used both and Code::Blocks seemed more intuitive and robust. Although now I'd probably use Monodevelop.
  • 0
  On 17/04/2011 at 07:46, ZekeComa said:

I wouldn't suggest using Code::Blocks, it's a crappy IDE. If you're Windows use Visual Studio 2010, Linux use KDevelop4, Mac OS X, use XCode.

Visual Studio 2010 C++ doesn't have Intellisense for CLI projects, so it's better to use VC++ 2008 for Windows Forms.

  • 0

What kind of uni would force you to use a particular IDE? That's bizarre :/ I guess I was really fortunate, we used whatever we wanted on whatever OS we wanted after the first few weeks (when they baby'd those who needed it). The uni itself had both Windows and Linux machines, too. Good teachers and choice ftw!

As for Dev-C++, I had forgotten it existed :p Not sure I've used it for about five years.

  • 0
  On 18/04/2011 at 13:37, Laura said:

What kind of uni would force you to use a particular IDE? That's bizarre :/ I guess I was really fortunate, we used whatever we wanted on whatever OS we wanted after the first few weeks (when they baby'd those who needed it). The uni itself had both Windows and Linux machines, too. Good teachers and choice ftw!

At my College, for anything MS Based we had to use Windows XP. We also had to use Visual Studio 2005, last year of college we got to upgrade to 2008 for VB, C#, And C++. Any database stuff was all MSSQL with the standard MS IDE for MSSQL. For Java we could use any IDE however the Teacher wanted us to use NetBeans and all examples he did would be in NetBeans.

We had a couple web-design classes which aside from the DreamWeaver and Photoshop requirements, we could use any text-editor for PHP, HTML. However all ASP websites had to be written in Visual Studio 2005.

We got to do minor Linux work.. however it was for Linux, and for the purpose of learning, not as an everyday sort of thing (was for a networking/security course). Our School was one of the MS based Schools so we had the Full MSDNAA and Dreamspark and all that.

  • 0
  On 18/04/2011 at 13:27, TechFreak:) said:

Visual Studio 2010 C++ doesn't have Intellisense for CLI projects, so it's better to use VC++ 2008 for Windows Forms.

Agreed, this is completly ridiculous though. I'm lucky enough to be using VS2010 Ultimate but there's no freakin intellisense at all for C++/CLI, and stuff like Go To Definition is flaky at best. That's what you get for a product that costs thousands of dollars?
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • For the foreseeable that is your choice. I'm interested tom try one, my wife was very pleased because one she is anti-social and driver chat annoys her and two more seriously there is a long history of drivers abusing women, it's rare, but it happens and more than it should. Sometimes she needs to get a late taxi and she says it may make her feel safer.
    • 5800x3d was chopped because it was too good, why bother releasing a new mid range.
    • Was it bad, sure, but I got it on PC so it was nowhere near as bad as the PS4/XBO versions. Besides, I spent around 200hrs in there and have yet to play the expansion for it. All in all I think I got my monies worth. Maybe I was lucky and didn't run into anything game breaking like others. Either way, $60 is my limit for a game, the point is I'm not going over that no matter what the title is or how much I want to play it. Thank god I don't suffer from FOMO.
    • spwave 0.9.0-1 by Razvan Serea spwave is a cross-platform audio editor designed for research and advanced analysis. It supports a wide range of audio formats, including WAV, AIFF, MP3, Ogg Vorbis, FLAC, ALAC, raw PCM, and more via plug-ins. spwave offers precise editing tools such as zoom, crop, fade in/out, gain adjustment, and region extraction. It enables detailed spectral and phase analysis and supports unlimited undo/redo. Users can drag and drop files, edit metadata, save labeled regions, and view multiple synchronized waveforms. Internally, spwave processes audio in 64-bit precision, ensuring high accuracy. It runs on Windows, macOS, and Linux, making it a reliable and flexible tool for audio research and editing. spwave has following features: Support for multiple platforms: Windows, macOS, Linux (Motif, gtk), etc. Support for WAV, AIFF, MP3, Ogg Vorbis, FLAC, ALAC, raw, and text files by using plug-ins. Support for many bits/samples: 8bits, 16bits, 24bits, 32bits, 32bits float, 64bits double. Converting the sampling frequency and the bits/sample of a file. Playing, zooming, cropping, deleting, extracting, etc. of a selected region. Fade-in, fade-out, gain adjustment, channel swapping, etc of a selected region. Editing file information that supports comments of WAV and AIFF, and ID3 tag of MP3. Analysis of a selected region using several analysis types, e.g. spectrum, smoothed spectrum, phase, unwrapped phase and group delay. Undoing and redoing without limitation of the number of times. Waveform extraction by drag & drop. Opening files by drag & drop. Autosaving of selected regions (you can do this by drag & drop also). Saving positions and regions as labels. Viewing some waveforms and setting regions synchronously. Almost all processing is 64 bits processing internally. Supported Formats: Read/Write: WAV, AIFF, AIFC, CAF, MP3, Ogg Vorbis, FLAC, ALAC (.caf, .mp4), WMA (Windows), APE, AU/SND, PARIS, NIST, IRCAM, raw PCM, text. Read-only: MPEG-2 Layer 3 MP3, RMP files with VBR support. With 64-bit internal processing, autosave capabilities, and synchronized multi-view waveform editing, spwave is a solid tool for anyone handling complex audio editing or acoustic research. spwave 0.9.0-1 changelog: Implemented CQT spectrum and CQT spectrogram (beta version). Implemented piano-key display for spectrum/spectrogram view. Implemented indication of musical note name in cursor information for spectrum/spectrogram view. Fixed a bug that spectrogram view after zoom-in with large factor sometimes freezes. Fixed a bug that scroll and zoom-out in spectrogram view after zoom-in with large factor do not work correctly. Fixed a bug that spectrogram view provides sometimes wrong time information. Fixed a bug that plugin errors sometimes cause a crash. Fixed a bug that the color of grid lines is wrong in printing. Optimized layout of spectrogram view for printing. Enhanced the function of waveform cropping from label information. Fixed a bug that some items in the preference dialog related to labels do not work. Added some items related to the region label in the preference dialog. Fixed a bug that drawing selected region in the log-frequency axis does not work correctly. Added partial support for the dark mode of Windows (the menu bar and the menus). Fixed a bug that the cursor to indicate current calculation position of spectrogram is sometimes not shown. Changed drawing of cursor information into that with white background so as to make the information legible. Fixed a bug that moving to the head by scrolling the overview display sometimes fails. Added feature of alignment of the view region between spectrum view and spectrogram view. Download: spwave 64-bit | spwave 32-bit | ~3.0 MB (Freeware) Download: spwave ARM64 | 2.9 MB Links: spwave Home page | Other OSes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Microsoft Weekly: redesigned Windows 11 Start menu, Xbox handheld is here, and more by Taras Buria This week's news recap is here. Fresh Windows 11 preview builds with the redesigned Start menu and Windows Vista flashbacks, the long-anticipated Xbox handheld, Patch Tuesday updates, gaming news, and more. Quick links: Windows 10 and 11 Windows Insider Program Updates are available Gaming news Great deals to check Windows 11 and Windows 10 Here, we talk about everything happening around Microsoft's latest operating system in the Stable channel and preview builds: new features, removed features, controversies, bugs, interesting findings, and more. And, of course, you may find a word or two about older versions. June 2025 Patch Tuesday updates are out. Windows 10 received KB5060533 with build numbers 19044.5965 and 19045.5965. Supported Windows 11 versions received KB5060842 and KB5060999 with build numbers 26100.4349, 22631.5472, and 22621.5472. Later, Microsoft released an out-of-band update to address problems with games with Easy Anti-Cheat, causing system restarts upon launch, and a couple of recovery updates. Microsoft launched Copilot Vision with Highlights for Windows. This feature enables AI to see what is happening on the screen and offer additional information, analysis, and context. Copilot Vision currently works with up to two apps, but its availability is limited to the United States (more countries are on the way, says Microsoft). Now, here is some useful stuff for Windows users: a neat third-party maintenance tool that can run various checks, troubleshooters, and repair utilities; a useful guide about personalizing OneDrive folders with a touch of color, and more. Windows Insider Program Here is what Microsoft released for Windows Insiders this week: Builds Canary Channel Dev Channel Build 26200.5641 This build introduces the recently announced Start menu redesign. It also packs Lock Screen widget improvements, Narrator enhancements, updates to the gamepad keyboard, and a lot of various fixes. Build 26200.5651 Another Dev build introduced a Settings app agent, Recall improvements, seconds for the calendar clock, context menu enhancements, and more. Beta Channel Build 26120.4250 The Beta build has the same changelog as the one from the Dev Channel. Build 26120.4441 The same build as 26200.5651 from the Dev Channel. Release Preview Channel Build 22631.5545 With build 22631.5545 for Widnows 11, Microsoft improved default browser settings and the Windows Share UI and fixed several bugs. Build 19045.6029 This build introduces improvements to app defaults and multiple fixes for Windows 10. The redesigned Start menu is the most exciting part of the new builds, but as usual, it is rolling out gradually. You can mitigate that by force-enabling the new Start menu using the ViVeTool app as described in our guide. Interestingly, the latest builds introduced a funny bug where Windows 11 plays the Windows Vista startup sound on boot. Microsoft acknowledged the issue and said it is working on a fix in future updates. Meanwhile, if you use the latest Dev and Beta builds, you will get to enjoy 2006 nostalgia each time you turn on your PC. Updates are available This section covers software, firmware, and other notable updates (released and coming soon) delivering new features, security fixes, improvements, patches, and more from Microsoft and third parties. This week's browser updates include a fresh Dev Channel update for Microsoft Edge and secure password deployment in Edge for organizations. The latter arrived in the Stable Channel on June 13 with version 137.0.3296.83. There was also a minor update for Firefox. The latter received version 139.0.4, which addressed several issues with the browser freezing when switching apps, failing to save wallpapers with proper names, and more. In addition to the update, Mozilla announced that Deepfake Detector is shutting down. The service will go dark on June 26, 2025. Moving to Office updates, we have some changes to the new Outlook, which will block more files and allow you to perform more tasks when offline. OneDrive for Mac now supports external disks, Clipchamp lets you trim videos by cutting out parts of the transcript, and OneNote now supports Copilot Notebooks. Microsoft also announced an update on the removal of Exchange Online Basic Authentication in Office 365. Here are other updates and releases you may find interesting: Rufus received an update to version 4.8 with performance improvements for Windows images. Microsoft is committing to upskilling 1 million UK workers in AI this year. Here are the latest drivers and firmware updates released this week: Intel 32.0.101.6881 WHQL graphics driver with a single fix for Overwatch 2. AMD 25.6.2 non-WHQL with support for FBC: Firebreak, The Alters, and more. On the gaming side Learn about upcoming game releases, Xbox rumors, new hardware, software updates, freebies, deals, discounts, and more. A lot happened on the gaming side this week. At the Sunday Game Showcase, Microsoft and ASUS announced two Xbox handhelds: the ROG Xbox Ally and the ROG Xbox Ally X. These portable consoles are a big deal for the world of handheld devices, as they run a special version of Windows, which was optimized for portable gaming consoles with fewer processes running in the background. As such, they offer much better battery life and performance. You can read more about how Microsoft optimized Windows 11 for handhelds in a separate article. Next, we have plenty of new games and DLCs announced at the showcase; here is a recap: Indiana Jones and the Great Circle received a new DLC called The Order of Giants. It will be available on all supported platforms this September. Call of Duty: Black Ops 7 made a surprise appearance at the showcase. Activision released a teaser trailer where the game takes players to a futuristic experience set in 2035. Grounded 2 was announced. The sequel of the game for people with arachnophobia is coming next month, offering gamers a new miniaturized survival adventure. Obsidian Entertainment revealed the release date of The Outer Worlds 2 and details about companions. At Fate's End by Spiritfarer was announced, a new action game about fighting family. It is coming to consoles and PC somewhere in 2026. Skybound Games revealed Invincible VS, a brutal 3v3 tag fighting game by former Killer Instinct developers. Anno 117: Pax Romana received a November release date. Ubisoft also unveiled a special Governor's Edition. Nvidia announced new games for its cloud-streaming gaming service, GeForce NOW. If you own one of the following games, you can play them on Nvidia's cloud. The new additions include Frosthaven Demo, Dune: Awakening, MindsEye, The Alters, Kingdom Two Crowns, and more. Mojang finally has a release date for Vibrant Visuals and Chase the Skies updates. On June 17, Minecraft will get its long-anticipated visual overhaul, new features, fresh mobs, and more. Deals and freebies Steam is running a new Next Fest, during which gamers can try hundreds of games for free. The event ends on June 16, 2025. The Epic Games Store is giving away Two Point Hospital, a humorous hospital builder simulator. As usual, more deals are available in this week's Weekend PC Games Deals article. Other gaming news includes the following: GOG store introduced the One-Click Mods feature with support for Fallout: London and others. Valve announced new accessibility details for game listings on Steam. Steam finally has a native client for Apple Silicon. To finish this week's gaming section, here is an editorial from Paul Hill exploring the new $80 cost frontier in modern gaming. Great deals to check Every week, we cover many deals on different hardware and software. The following discounts are still available, so check them out. You might find something you want or need. JBL Bar 1000 and 700 sound bars Ring Floodlight Cameras Geekom Mini IT12 mini PC - $499 | $200 off Amazon Kindle Scribe (16GB) - $299.99 | 25% off LG gram Pro 16" Copilot+ PCs - $1,499.99 | 25% off GameSir Super Nova Wireless Controller for PC and mobile - $44.99 | 25% off Intel Core Ultra 7 Desktop Processor 265K 5.5 GHz - $259.99 | $144 off 12TB Seagate IronWolf Pro HDD - $218.49 | 13% off Polk Audio React 7" Wireless Subwoofer - $99.99 | 50% off StreamMaster Plus2 4K Gaming Projector - $1,699 | 15% off AMD Ryzen 5 9600X - $179.99 | 35% off Sony BRAVIA 5 65 Inch TV Mini LED - $1,298 | 13% off This link will take you to other issues of the Microsoft Weekly series. You can also support Neowin by registering a free member account or subscribing for extra member benefits, along with an ad-free tier option. Microsoft Weekly image background by
  • Recent Achievements

    • Apprentice
      Wireless wookie went up a rank
      Apprentice
    • Week One Done
      bukro earned a badge
      Week One Done
    • One Year In
      Wulle earned a badge
      One Year In
    • One Month Later
      Wulle earned a badge
      One Month Later
    • One Month Later
      Simmo3D earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      595
    2. 2
      ATLien_0
      277
    3. 3
      +FloatingFatMan
      181
    4. 4
      Michael Scrip
      148
    5. 5
      Steven P.
      111
  • Tell a friend

    Love Neowin? Tell a friend!