



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Notes; Class: Introduction to C Programming for Engineers; Subject: Computer Systems Engineering ; University: University of Alaska - Anchorage; Term: Spring 2009;
Typology: Study notes
1 / 7
This page cannot be seen from the preview
Don't miss anything!




enum months
enum months
void main()
char *mon[]
{“January”, “February”, “March”}; 6 enum months month; 7 for (month=JAN; month
month++)
printf (“%s\n”, mon[month]); 9