Search



Saturday, 7 February 2015

Hello!!

In this program, # is a preprocessor directive ,  whereas #include is used to extract the 
functions already created in files (eg:- conio.h contains getch() function). clrscr() clears the whole screen.
Line printf prints the whole statement written inside it.
getch() is used for input of any character .
For more information & explanation of this program click here..

Program to print Hello!!.

#include<stdio.h>
#include<conio.h>
void main()
{       clrscr();
printf("\n\n\t\t HELLO!!");
getch();
}



No comments:

Post a Comment

Guys if you think something is wrong or should be edit than please do comment.