WAP to input your name and display it
#include
void main ( )
{
char nm [15];
clrscr ( );
printf (“enter your name”);
gets (nm);
printf (“name is %s”,name);
getch ( );
WAP to input your name and display it
#include
void main ( )
{
char nm [15];
clrscr ( );
printf (“enter your name”);
gets (nm);
printf (“name is %s”,name);
getch ( );
No comments:
Post a Comment