Strings - Programming

Q1:

Is there any difference between the two statements?
char *ch = "AptitudeCrack";
char ch[] = "AptitudeCrack";

A yes

B No

ANS:A - yes

In first statement the character pointer ch stores the address of the string "AptitudeCrack".
The second statement specifies the space for 7 characters be allocated and that the name of location is ch.