zahidin98

Untitled

Sep 26th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <conio.h>
  3.  
  4. void main()
  5. {
  6. int a;
  7. printf("Input Your Date Of Birth :\t");
  8. scanf("%d",&a);
  9. int b;
  10. printf("\nInput The Month Of Birth :\t");
  11. scanf("%d",&b);
  12. int c;
  13. printf("\nInput year born :\t\t");
  14. scanf("%d",&c);
  15. printf("\nThen Your Date Of Birth Is :\t %d-%d-%d",a,b,c);
  16. getch();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment