fork download
  1. //Q99. Change the date format from dd/04/yyyy to dd-Apr-yyyy.
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. int d, m, y;
  6. char *months[] = {"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
  7. scanf("%d/%d/%d", &d, &m, &y);
  8. if(m < 1 || m > 12)
  9. printf("Invalid month");
  10. else
  11. printf("%02d-%s-%d", d, months[m-1], y);
  12. }
  13.  
Success #stdin #stdout 0.01s 5320KB
stdin
15/04/2025
stdout
15-Apr-2025