#include<stdio.h>
#include <string.h>
int main()
{
      char date[12];
      char day[3];
      char month[4];
      char year[5];
      char day_month [7];
  printf("Please enter your date: ");
  gets (day);
   printf("Enter your month: ");
  gets (month);
   printf("Please enter your year: ");
   gets(year);

  strcpy( day_month,day );
  strcat( day_month,"/" );
  strcat( day_month,month);
  strcpy( date,day_month );
  strcat( date,"/" );
  strcat( date,year);
  printf("\nYour date is %s ",date);
  return 0;
}