Skip to main content

Dev C++ IDE for C and C++

1 min read Updated June 30, 2026
Share:
On this page (4sections)

Dev C++ IDE Features:

Bloodshed Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it’s compiler. Dev-C++ can also be used in combination with Cygwin or any other GCC based compiler.

Free Software (GPL)
For Windows 95, 98, NT, 2000, XP

Authors : Colin Laplace, Mike Berg, Hongli Lai : Development
Mingw compiler: Mumit Khan, Jan Jaap van der Heidjen, Colin Hendrix and GNU coders.

Dev C++ IDE Home and Downloads

http://www.bloodshed.net/index.html

http://www.bloodshed.net/download.html

Frequently Asked Questions

What does this C++ program do?
It is a C++ example program that demonstrates Dev IDE for C and, including the complete source code and the expected sample output.
How do I compile and run this C++ program?
Save the code in a `.cpp` file, compile it with `g++ filename.cpp -o program`, then run it with `./program` (or `program.exe` on Windows).
What concepts does this example use?
This example uses core C++ syntax, illustrating a common pattern in C++ programming.

Related Tutorials

Search tutorials