C PROGRAM - 2

Question Paper Of this Solution
Program No. 2
Just Copy and Paste this code in your notepad...

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

#include
#include

void main()
{
clrscr();

printf("\n Name : diz");
printf("\n Address : M'bad");
printf("\n Birth Date : 18th Mar 1988");

getch();
}


Output:

Name: diz
Address: M'bad
Birth Date: 18th Mar 1988


Program no. >>[ 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 ]