counter

Free Hit Counter

Simple C program to print hello n how are you


Q: Write a program that prints hello on first line and How are you on second lineUsing simple printf statement


#include
#include
void main()
{
clrscr();
printf("\t\t hello \n\t How are you?");
getche();
}

No comments:

Post a Comment