program to print Name, Address and Birth Date.
#include<stdio.h>
#include<conio.h>
int main()
{
clrscr(); //
clears the output window
printf("\n
Name : David"); //
prints the name
printf("\n
Address : London"); // prints
the address
printf("\n
Birth Date : 02-08-1958"); //
prints the birth date
getch();
return
0;
}
Name: David
Address: London
Birth Date:02-08-1958
No comments:
Post a Comment