Running A Program In C Programming Language

Steps to be followed;
-Create a file using any text editor.
-Compile the program and execute the program.

Create a file using any text editor :
-Save the program with the extension '.C', which indicates that the file contains C source code.
Compile the program and execute the program :
-Compiling will convert the source code into object code, so compile the program.
-If there is any errors, the the programmer has to correct the errors by editing the source code.
-If there are no errors, an executable file is created with extension '.exe' and the program is ready for execution.
-Once the program is created, it will give out the result.
-Any error that occur during the execution is called run-time error.

This might be hard to understand for some people, but it is realy easy, you will get comfortable when you read the next post(Hello World In C).