please guys look at the code below
#include <stdio.h>
int main(void)
{
enum days {monday=1, tuesday, wednesday, thursday, friday, saturday, sunday};
enum days today=monday, tomorow=today+1;
printf("\n today is the %d day of the week\n", today);
printf("tomorow is the %d day of the week\n", tomorow);
printf("\n today is %s and tomorow will be %s\n", today, tomorow); //did not work
return 0;
}
so how do i get the third 'printf' print out the variables today and tomorow as strings?