Possible Duplicate:
What is the difference between char s[] and char *s in C?
What is the difference between char a[] = “string”; and char *p = “string”;
I want to know what is difference between below two string declaration in C language
char *myString = "This is a C character string";
and
char myString[] = "This is a C character array";
I know that first one is pointer and second is array but i couldn't get the difference.