Skip to main content

How to Download and Install and Run Program in Dev C++ Compiler IDE

 

1: How to download Dev C++ Compiler [IDE]


Step 1: 





Step 2: 


Download the ZIP file


Step 3: 


Extract ZIP file



Step 4:


Run (Embarcadero_Dev-Cpp_6.3_TDM-GCC 9.2_Setup.exe) File


2: How to Install and Configure Dev C++ Compiler [IDE]


Step 1:


Select Language English

Step 2:


Click "I Agree" to accept license agreement


Step 3:


Click Next 


Click Install


Now Dev C++ Compiler is being installed


Step 4:


Check: Run Embarcadero Dev-C++
 
Click Finish 


Step 5: 


Select Language English and Click Next


Step 6: 


Choose Font, Colors and Themes which one you like and then Click Next


Step 7: 


Click OK to finish configuration and open Start Page


3: How to Compile and Run Program in Dev C++ Compiler [IDE]


Step 1 (Shortcut Keys):


Press Ctrl + N for New File
Press Ctrl + O to Open Existing File
Press Ctrl + S to Save
Press Ctrl + W to Close Tab

Press F9 To Compile the program 

Press F10 To Run the program

Press F11 To Compile & Run the program

Step 2 (Write or Open Program):


Press Ctrl + N for new untitled File
Write and Save your C program 

OR 


Press Ctrl + O to open dialogue box
Select C Source File and Click Open


Step 3 (Compile):



To Compile Click the Compile Button or Press F9



Step 4 (Run):



To Compile Click the Compile Button or Press F10




Comments

Popular posts from this blog

Introduction to C programming language and a basic C program explanation

Introduction to C Programming Language What is C language? C is a high-level programming language. C programming language was designed and developed by Denis Ritchie  at AT&T Bell Laboratoires in 1972-73. C language is a case-sensitive language, which means  num  is not equal to Num , they both are different from each other. C is an easy to learn programming language. Similarities between learning English Language and C Programming Language: 1) English language: First we have to learn Alphabets in English language.     C language: First we have to learn Alphabets, Digits and Special Symbols in C language. 2) English language: After learning Alphabets, we learn to create words.     C language: After learning  Alphabets, Digits and Special Symbols, we learn to create Variable and Constants and learn what are keywords in C language 3) English language: After creating words, we learn how to make a sentence using those words.     C ...