aboutsummaryrefslogtreecommitdiffstats
path: root/test/gourdinl/c/enum2.c
blob: a18acb80802fdc189a65ae1631a1214019a85298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* enum2.c  -- Starting to use enumerated types: Printing for each 
 *             day of the week, today, yesterday, and tomorrow, both
 *             as a string and as a number. We use typedef
 */

#include <stdio.h>

/* Introducing an enumerated data type */
typedef enum {monday,tuesday,wednesday,thursday,friday,saturday,sunday} days;

/* Two useful functions */
days yesterday(days today);
days tomorrow(days today);

char *thedays[] = {"monday", "tuesday", "wednesday", "thursday",
		       "friday", "saturday", "sunday"};

int main(void){
  days today;

  printf("today    \tyesterday  \ttomorrow\n"
         "============================================\n");
  for (today=monday;today<=sunday;today++)
    printf("%s = %d \t %s = %d \t %s = %d\n", 
	   thedays[today], today, 
	   thedays[yesterday(today)], yesterday(today),
	   thedays[tomorrow(today)], tomorrow(today));
}

days yesterday(days today){
  return (today+6)%7;
}
days tomorrow(days today){
  return (today+1)%7;
}

/*
 The output is:

today    	yesterday  	tomorrow
============================================
monday = 0 	 sunday = 6 	 tuesday = 1
tuesday = 1 	 monday = 0 	 wednesday = 2
wednesday = 2 	 tuesday = 1 	 thursday = 3
thursday = 3 	 wednesday = 2 	 friday = 4
friday = 4 	 thursday = 3 	 saturday = 5
saturday = 5 	 friday = 4 	 sunday = 6
sunday = 6 	 saturday = 5 	 monday = 0

*/