Latest CMC Aptitude Question SOLUTION: Consider the C language code given below. int *a; int b[2]; a = b; b[0] = -46; b[1] = -23; *a = -34; (*++a)++; What are the values of b[0], b[1] at the end. A -34, -24 B -46, -22