Introduction to C 

What is  C language ?
    C is a Procedure Oriented Programming language . It is considered as the base for many other language . It is a language used for developing the system software or applications that directly interact with system hardware ,kernels and driver . C is much more faster than modern programming languages.


C Program

 History of C
C language was developed by Dennis Ritchie in 1972 at AT & T's Bell Labs for developing Unix operating system .
C has became so popular today because of its reliability , simplicity and is easy to use.


 First program in C
#include<stdio.h>
int main()
{
   printf("Hello World ! ");
}

Output :
Hello World !