A C program to enter and display the name using string

// A C program to enter and display the name using string 

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
char name[30];
printf("Enter name: ");
gets(name);   
printf("Name: ");
puts(name);    
getch();
}


Output:


A C program to enter and display the name using string, a c program to enter and display the name, write a program to enter and display the name using string, my knowledge to you dude















Post a Comment

0 Comments