After installing and setting up the compilation path, now you have to open the Dev C++ IDE.
- Search for Dev C++ application on the start menu. Otherwise, you could get the DEV C++.exe application file at the installed folder.
- When you open the Dev C++ for the first time, you have to set up a few processes. Just let the defaults as usual and just click Next and follow the screenshots shown below.
- Once the setup process would complete, the Dev C++ IDE will open like bellow.
- After opening the Dev C++ IDE, click on File --> New --> Project to start a new project.
- A new window would appear. On that window, click on Console Application. Then in that window, select the C Project radio button for C Program and C++ Project for C++.
- If you have to make only one Language project, then just check on Make Default Language. And then click on Ok button to save the project.
- Then it would show you the Path, where you have to save the Project. Then click on Save button.
- Then the main.c file would appear. In that main.c window, there must be some predefined codes. You could write the code as per your choice.
- Then you have to save your file before compilation.
- After saving the file, now it's the time for compilation. For the compilation, you have to go to Execute --> Compile. You could use the shortcut key F9 for compilation.
- At the time of compilation, you could abort the process also.
- After compilation, you could run the file for execution by following Execute --> Run. Otherwise, use the shortcut key F10 to run.
- There is another option Compile & Run to compile and run at a time. F11 is the shortcut key for this.
- After compilation, the output would appear in a new console.