Free Installation Guide for Dev C++

📂 Download the Dev C++ installation package

Please copy the following link and open it in your browser to access the download page:

🔗 Download link:https://pan.quark.cn/s/b7331750f18c

💡 Brief Overview of the Dev C++ Installation Guide

Installing Dev C++

  • After the download is complete, double-click the installation file (for example:<span>DevC++_Setup.exe</span>) to start the installation.

    Free Installation Guide for Dev C++

  • Follow the steps below to install:

    Free Installation Guide for Dev C++

  1. Select Installation Language: In the first installation screen, select the language (default is English), then click OK.

  2. Accept License Agreement: Click I Agree.

    Free Installation Guide for Dev C++

  3. Select Installation Path: Choose the installation directory; you can use the default path or click Browse to select another directory. It is recommended to use the default path.

  4. Select Installation Components: You can choose to install additional components; usually, the default options are sufficient.

    Free Installation Guide for Dev C++

  5. Select Desktop Shortcut: If you want to create a desktop shortcut, you can check the corresponding option.

  6. Click Install to begin the installation.

    Free Installation Guide for Dev C++

3. Complete Installation

  • After the installation is complete, click Finish to exit the installation wizard.

  • You can choose to launch Dev C++ immediately or manually open it from the desktop shortcut.

4. Configure the Compiler (if needed)

  • Dev C++ uses MinGW as the default C/C++ compiler, which should be configured after installation. If it is not configured automatically, follow the steps below to configure it manually:

  1. Open Dev C++.

  2. Click Tools > Compiler Options.

  3. In the Compiler Options window, select Settings.

  4. In the Settings, ensure the path for the MinGW compiler is correct (usually the default path is <span>C:\Dev-Cpp\MinGW64</span>).

  5. If the path is incorrect, manually change it to the correct path.

5. Test Installation

  • Open Dev C++, create a new project (for example, a simple Hello World program).

  • Write the following C++ program:

  • #include<iostream>
    using namespace std;
    
    int main() {
        cout << "Hello, World!" << endl;
        return 0;
    }
  • Click Compile and Run (F11), if it compiles successfully and outputs “Hello, World!”, the installation is successful.

Now you can start using Dev C++ to develop C/C++ programs!

Leave a Comment