2. Write a program to print Name , Address and Birth Date.

Shared By : diz (SVICS - KADI )

#include<stdio.h>
#include<conio.h>

int main()
{
    clrscr();   //  clears the output window

    printf("\n Name : Diz");             // prints the name
    printf("\n Address : xyz");        // prints the address
    printf("\n Birth Date : 31-03-1989");    // prints the birth date

    getch();

    return 0;
}


Output:

 Name: Diz
 Address: xyz
 Birth Date:31-03-1989