Given the following enum, what is the output from printf():
enum direction { north=10, south=20, east=30, west=40 };
enum direction d;
d = west;
printf("%d\n", d);
a.40
b.West
c.west
d.3
Given the following enum, what is the output from printf(): enum direction { north=10, south=20, east=30,...