You are on page 1of 1

Program6.c http://localhost:4649/?

mode=clike

1 // Program :- B.Tech CSE


2 // Name :- Anish Sharma
3 // Enrollment no. :-202203103510042
4
5 #include<stdio.h>
6
7 int main()
8 {
9 int pd,pm,py,bd,bm,by;
10 printf("Enter your birthdate (dd mm yyyy):- ");
11 scanf("%d %d %d",&bd,&bm,&by);
12 printf("Enter present date (dd mm yyyy):- ");
13 scanf("%d %d %d",&pd,&pm,&py);
14 printf("your age is %d years and %d months \n",py-by,pm-bm);
15 return 0;
16 }

1 of 1 13/12/22, 14:24

You might also like