Possible Duplicates:
Difference between char *str=“STRING” and char str[] = “STRING” ?
C: differences between pointer and array
Hi,
Can anybody tell me the difference between the statements below?
char *p = "This is a test";
char a[] = "This is a test";