#include<stdio.h> //header files
#include<conio.h> //header files
void main() //starting of the main() function
{
char a[20],b[20],c[50]; //declaration of the variables
clrscr();
printf("\nprogram that takes name,date of birth,address and display in proper format");
printf("\n\n\n\t\t------------INPUT-------------");
printf("\n\nEnter the name,date of birth,address "); //taking input from the user
gets(a);
gets(b);
gets(c);
printf("\n\n\n\t\t------------OUTPUT------------");
printf("\n\nThe name is:");
puts(a); //printing output
printf("\nThe date of birth is:");
puts(b);
printf("\nThe address is:");
puts(c);
getch();
}