September 4, 2013

Installation of Dev C++


Here is the step by step procedure for the installation of Dev C++
First, download the Dev C++ from the following link.
http://sourceforge.net/projects/orwelldevcpp/files/latest/download

Then after download execute the setup.  The screenshots are of different versions.

1

Select Language.

 2
Click I agree.


 3

Select Next.

 4

Click Install.
 5
Installation in progress.

 6

Hit Yes.
 7

Click finish.
 8
Click Next . Choose English as  language.

 9


 10


Click OK.
 11

Click Close.

 12
Now, go to file.

 13

Select New –> Source File.

 14

Write Code and press Ctrl + S to save the file.

 15

Save it as C source file. Compile it.

 16

Now, after successful compilation. Click on Run.
You will get the output.
 final



3 comments:

C program to Read From a File

#include <stdio.h> #include <stdlib.h> void main() {     FILE *fptr;     char filename[15];     char ch;   ...