CS/CE 218 Quiz #8 17 October, 1991 Name: TA: 1. (7 points) What is printed by the following program: main() { printf("a (4 points)\n"); printf("%d", 011 << 2); if (~0) { enum colors {red, yellow, blue}; printf("b (3 points)\n"); printf("%d", blue); } } 2. (9 points) Complete the following table, assuming the variable i is declared as int i; expression : type ----------------:---------- 3 : int 3.14159 : double 3.14 + 5 : 'c' : (double) 2.73f : 0755 / 34 : 1 ? 3 : 3.141 : (unsigned) -1 : i == 3.14159 : i = 'c' : i=3, 58.2231 :