AC program contains the following declaration, static char *color[6] = {“red”, “green”, “blue”, “white”, “black”, “yellow”): a) What is the meaning of color? b) What is the meaning of (color + 2)? c) What is the value of *color? d) What is the value of * (color + 2)? e) How do color [5] and * (color + 5) differ?