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

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 ();

}


Labels