Printing of String_3


//program to demonstrate printing of string

#include<stdio.h>
#include<conio.h>
void main()
{
 char name[25];
 printf("Enter name ");
 scanf("%s",&name);
 printf("Entered name is %s",name);
getch();
}

Post a Comment

Previous Post Next Post