C programming language
About C programming Language?
C is a High Level Programming language written by Dennnis Ritchie in around 1970's . C is a most popular programming language among many computer languages. C language is widely used language in world. Most of the Operating system build under the C language. Linux operating system , MySQL the most popular database software, Symbian are developed using C language. Most Desktop operating system as well as Mobile operating system developed by C programming language.
The basic syntax of C programming language :
#include<stdio.h>
void main()
{
pritnf("Hello world");
}
// Congratulations to all you write your first program in C language.
Comments
Post a Comment