First Program of C Language - Introduction Of C Language
C is a general purpose High Level Programming Language developed by Dennic Ritchie for the Unix Operating System in AT & T Bell Lab in 1972.C was given free with UNIX O/S.
All the Applications which are running on Unix Operating System are developed in C and the UNIX operating System also developed in C Language.
Features of C Language :-
- Easy to Learn.
- High Level Language with great support of Low Level Programming.
- Structured Language.
- Can be Compiled on various machines with different Compilers.
Program of C Language - How to write a C Program.
#include<stdio.h>
#include<conio.h>
int main()
{
int x=10;
printf("Your value is =%d",x);
}
{ 0 comments... read them below or add one }
Post a Comment