Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <conio.h>
- void main()
- {
- int a;
- printf("Input Your Date Of Birth :\t");
- scanf("%d",&a);
- int b;
- printf("\nInput The Month Of Birth :\t");
- scanf("%d",&b);
- int c;
- printf("\nInput year born :\t\t");
- scanf("%d",&c);
- printf("\nThen Your Date Of Birth Is :\t %d-%d-%d",a,b,c);
- getch();
- }
Advertisement
Add Comment
Please, Sign In to add comment