Factsheet
Original author Colin Laplace (Bloodshed Software) 1998-2005
Developer Johan Mes (Orwell) 2011-2020, Embarcadero since 2020
Initial release 1998; 28 years ago (1998)
Original author Colin Laplace (Bloodshed Software) 1998-2005
Developer Johan Mes (Orwell) 2011-2020, Embarcadero since 2020
Initial release 1998; 28 years ago (1998)
Visual Studio
visualstudio.microsoft.com βΊ vs βΊ features βΊ cplusplus
Visual Studio C/C++ IDE and Compiler for Windows - Microsoft
December 5, 2025 - Build modern C and C++ apps for Windows using tools of your choice, including MSVC, Clang, CMake, and MSBuild Β· Contains C/C++ components for desktop, mobile, Linux, and game development ... By downloading, you agree to the licensing terms for the Visual Studio edition you select below.
How to install C/C++ on Windows 11
The EASIEST way is to download and install "Visual Studio Community Edition" off of the microsoft web site. More on reddit.com
C Compiler Suggestions for Windows 11?
I'd probably go with Visual Studio (not to be confused with Visual Studio Code!). It'll include a compiler. The Community Edition is free and has all the features you could possibly want. Just make sure to select the C/C++ workload during installation. More on reddit.com
Easiest way to set up C compiler on Windows 10 (if you use Visual Studio Code)?
The simplest way is to download and install "Build Tools for Visual Studio 2022", which includes the compiler (MSVC) and its command prompt. After that you open the compiler's command prompt and compile your code using the command: cl filename.c This will generate the file: filename.exe You can run it by simply executing: filename That's it! More on reddit.com
A good C compiler for Windows ?
Pretty much all Windows compilers these days use stupid online downloaders, eliminating much of the determinism and simplicity you might want (Msys2, Cygwin, MSVC++). Intel's compiler also relies on Microsoft's linker too which is annoying. The only one I found that was a little sane was Embarcadero's (clang based): https://www.embarcadero.com/free-tools/ccompiler/free-download However it is 32-bit only which is possibly an issue for a few projects. So what I typically do is install Msys2, including all that messy POSIX layer nonsense, install the packages: mingw-w64-x86_64-gcc mingw-w64-x86_64-make mingw-w64-x86_64-gdb Then zip up the mingw64 folder and delete the rest of the crap. The only annoyance is that GDB drags in sodding python which is extremely heavy for such a niche usage but this is a growing flaw with package managers (and open-source) in general these days. ... Another option which might be preferable is install Linux or FreeBSD and use wine's winegcc compiler to cross compile. I tend to do this and mixed with Wine for quick test iterations is a really nice way to go to avoid Microsoft's slow cancerous consumer growth inside Windows. More on reddit.com
Videos
06:49
How to Install C/C++ Compiler on Windows 11 - MinGW GCC - YouTube
12:41
How to Install MinGW (GCC/G++) Compiler in Windows 11 - YouTube
08:02
How to install GCC Compiler 14 on Windows 10/11 [2024 Update] Latest ...
11:11
How to Setup Windows 11 for C/C++ (Basic setup) with VS Code. - ...
How to Install GCC Compiler Tools in Windows 11 (C/C++)
08:23
How to Install C and C++ compiler ( gcc g++ gdb ) on Windows 11 ...
Softonic
en.softonic.com βΊ downloads βΊ c-compiler
Download C Compiler - Best Software & Apps
Download C Compiler. Free and safe download. Download the latest version of the top software, games, programs and apps in 2026.
SourceForge
sourceforge.net βΊ projects βΊ gcc-win64
gcc-win64 download | SourceForge.net
Download gcc-win64 for free. x64 build of GCC for Windows. x64 C/C++ compiler for Windows using (unofficial build): - gmp - mpfr - mpc - isl - cloog - mingw-w64 - gcc - seh You need at least core2 command set support to run this application. Note that every version with bundled gdb needs at ...
Dev-C++
bloodshed.net
Home | Dev-C++ Official Website
Dev-C++ is a full-featured C and C++ Integrated Development Environment (IDE) for Windows platforms. Millions of developers, students and researchers use Dev-C++ since the first version was released in 1998. Dev-C++ 5.0 beta 9.2 (4.9.9.2) with Mingw/GCC 3.4.2 compiler and GDB 5.2.1 debugger. Download
SourceForge
sourceforge.net βΊ projects βΊ orwelldevcpp
Dev-C++ download | SourceForge.net
3 weeks ago - Download Dev-C++ for free. A free, portable, fast and simple C/C++ IDE. A new and improved fork of Bloodshed Dev-C++
Visual Studio Code
code.visualstudio.com βΊ docs βΊ languages βΊ cpp
C/C++ for Visual Studio Code
November 3, 2021 - Select the Extensions view icon on the Activity Bar or use the keyboard shortcut (β§βX (Windows, Linux Ctrl+Shift+X)). Search for 'C++'. Select Install. C++ is a compiled language meaning your program's source code must be translated (compiled) before it can be run on your computer.
OneCompiler
onecompiler.com βΊ c βΊ 3xcb2dutw
windows 11 - C - OneCompiler
Write, Run & Share C Language code online using OneCompiler's C online compiler for free. It's one of the robust, feature-rich online compilers for C language, running on C18. Getting started with the OneCompiler's C editor is really simple and pretty fast.
freeCodeCamp
freecodecamp.org βΊ news βΊ how-to-install-c-and-cpp-compiler-on-windows
How to Install C and C++ Compilers on Windows
February 22, 2022 - But many devs face difficulties when installing the compiler, so I am going to show you all the steps to do so in this article with screenshots to help you get it done. I will be using Windows 11, but the same process is applicable for all other Windows operating systems unless you are using Windows XP (You need to change some steps in Windows XP). If you'd like to watch the video I made on this topic as well, here it is: Firstly we need to download an executable file from MSYS2.
Reddit
reddit.com βΊ r/c_programming βΊ how to install c/c++ on windows 11
r/C_Programming on Reddit: How to install C/C++ on Windows 11
April 8, 2024 -
I have come across many sources and Youtube vids on how to install C on Windows, but each of them varies wayy too much. So I wanted to know if there are any sources according to u that are reliable and easy to install and dont go about it on such a roundabout way. I'm a beginner to programming so please make it to understand.Any vids on installation are also welcome
Top answer 1 of 5
17
The EASIEST way is to download and install "Visual Studio Community Edition" off of the microsoft web site.
2 of 5
3
Code::blocks offers a fully integrated IDE and GCC compiler suite, allowing you to download, install and then be up and running. https://www.codeblocks.org/downloads/binaries/ Make sure you choose one of the mingw downloads, as this includes the compiler.
DigitalOcean
digitalocean.com βΊ community βΊ tutorials βΊ c-compiler-windows-gcc
Install C/GCC Compiler for Windows | DigitalOcean
August 3, 2022 - In other words, CodeBlocks is a free C/C++ IDE that comes with the built-in compiler. Download codeblocks from www.codeblocks.org/downloads/binaries for your respective Operating System. Windows users should choose download file which has βmingwβ in its name, for example, codeblocks-17...
GoogleIP
betanet.net βΊ view-post βΊ c-compiler-download-for-windows-11
C Compiler Download for Windows 11: Comprehensive Guide and Best Options
Step 3: Download the installer and run it. Step 4: Select the "Desktop development with C++" workload. Step 5: Click on "Install" and follow the remaining prompts to complete the installation. Code::Blocks is another versatile option for C programming on Windows 11. Here's why: Free and open-source IDE. Lightweight and highly customizable. Supports multiple compilers, including GCC, MSVC, and Clang.
WinLibs
winlibs.com
WinLibs - GCC+MinGW-w64 compiler for Windows
Jump to: Download | How to use from Windows Command Prompt | How to use from Code::Blocks | Philosophy | Donate Β· In short: it's a free C and C++ compiler for Microsoft Windows.
SourceForge
sourceforge.net βΊ projects βΊ embarcadero-devcpp
Dev-C++ for Windows 10/8/7 download | SourceForge.net
Integrated Development Environments ... Compilers, Code Editors, Code Formatters ... Access Google's best plus Claude, Llama, and Gemma. Fine-tune and deploy from one console. Build generative AI apps with Vertex AI. Switch between models without switching platforms. ... Embarcadero Dev-C++ is good. However, the UI interface is much different from original Dev-C++ (Orwell version and bloodshed version). Here I recommend "Xiaoloong Dev-C++", which supports Windows 11/10/8/7, and ...
Services
lcc-win32.services.net
LCC-Win: A free compiler system for Windows Operating Systems by Jacob Navia
Here you can download the lcc-win32 or the lcc-win64 C compiler system. The system is self contained: you do not need anything else to get started programming in C in the Win32 environment.
Upgrad
upgrad.com βΊ home βΊ tutorials βΊ software & tech βΊ c compiler for windows
Best C Compiler for Windows: Complete Guide
July 9, 2025 - Download the MinGW installer, run it, mark all packages for installation, and apply changes. Then, update your PATH variable so you can compile from the terminal. Yes, all major compilers like GCC (via MinGW), Clang, and MSVC work on Windows 11.
Standard C++
isocpp.org βΊ get-started
Get Started! : Standard C++
Download one that suits your platform: Gnu Compiler Collection: Includes g++, a popular C++ compiler. A build for Windows is available here, builds for other platforms are likely available via your platform's package manager, or you can build it yourself using instructions here.