#include #include #include "hw5data.h" main() { int i; printf("\nMonths\n-----------\n"); for (i=0; i<12; i++) { printf("%d: %s\n", i, months[i]); } // your sort function goes here printf("\nMonths Sorted\n-----------\n"); for (i=0; i<12; i++) { printf("%d: %s\n", i, months[i]); } printf("\nDays\n-----------\n"); for (i=0; i<7; i++) { printf("%d: %s\n", i, days[i]); } // your sort function goes here printf("\nDays Sorted\n-----------\n"); for (i=0; i<7; i++) { printf("%d: %s\n", i, days[i]); } }