Declared char array (read-only): const char alpha [] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
Given a char pointer called ptr and the alpha array declared above, how would I make ptr point to the letter 'D'?
I think its ---> char *alpha[3]; because its pointing to the third index of the array.