Discription About Program

1.A simple C program to display "Hello, World!" on the screen.
2.It's a very simple program, it is often used to illustrate the syntax of a programming language.

For Example-:

	 #include<stdio.h>
	 void main()
	 {
	   printf("HELLO WORD");
	   }