7. <<
Previous Next >> 9.
8.
#include <stdio.h>
int main() {
// Define an enumeration type 'week'
enum week {Sun, Mon, Tue, Wed, Thu, Fri, Sat};
// Print the values of the days using the enumeration constants
printf("Sun = %d", Sun);
printf("\nMon = %d", Mon);
printf("\nTue = %d", Tue);
printf("\nWed = %d", Wed);
printf("\nThu = %d", Thu);
printf("\nFri = %d", Fri);
printf("\nSat = %d", Sat);
return 0;
}
7. <<
Previous Next >> 9.