Strings - Programming

Q1:

For the following statements will arr[3] and ptr[3] fetch the same character?
char arr[] = "AptitudeCrack";
char *ptr = "AptitudeCrack";

A Yes

B No

ANS:A - Yes

Yes, both the statements prints the same character 'i'.