Showing posts with label WAP to print name and display on screen. Show all posts
Showing posts with label WAP to print name and display on screen. Show all posts

Tuesday, 28 August 2007

ENTER & DISPLAY

WAP to print name and display on screen

void main ()

{

char name [15];

clrscr ();

printf ("Enter your name: ");

gets (name);

printf ("\nme is: %s",name);

getch ();

}