//C Program to Print Hello
#include<stdio.h>//standard input
output header
#include<conio.h>//console input
output header
void
main()
{
clrscr();//clear the output screen after each execution
printf("\n\n\tHello C\n\n\tThanks to Dennis Ritchie");//\n is used for
newline
printf("\n\tfor providing this Language");//\t is used for tab
getch();//pressing ctrl+F9 to see the output
}
No comments:
Post a Comment
Note: only a member of this blog may post a comment.