C Programming Introduction 1

C Programming Introduction


Dear Friends welcome to Edudost !
Today we start learning C Programming .
C computer programming language was developed by Dennis M. Ritchie at the Bell Telephone Laboratories in 1972 . C programming was used to develop Unix OS.As time passed this Programming language becomes the most popular  programming language in the world . C programming is called mother of all programming language because most  computer programming is based on C so It is easy to learn other programming language if we have a good base in C programming.C programming is used to developed application software.

C Program example to print Hello Friends!

Program:

#include<stdio.h>
#include<conio.h>
void main()
{
   printf("Hello Friends!");
   getch();
}

If you have any query please let me know in comment box ,I will try to reply as soon as possible.

No comments:

Your comment will be visible after review.