+ 1
Converting US date to EU date challenge?
Can I have some guidance on this? Don’t need the answer just a push.
2 Respostas
+ 4
Input is in the form of mm/dd/yyyy or month dd, yyyy. You need display or convert into date/month/year...
Varies ways you can do. If you want split and merge, read about strtok function....
+ 3
check if first char is alphabet, if it is then
change the input from
month dd, yyyy into
mm/dd/yyyy
then simply split each date values
and print them by dd/mm/yyyy order