Possible Duplicate:
What is the difference between char a[] = “string”; and char *p = “string”;
Will the array version allocate the array memory, so a 100 byte string will use 100 bytes on the constant section and 100 on the static array, or will it use only 100 bytes total? And the pointer version, will it allocate the word size for the pointer besides the 100 bytes of the string, or will the pointer be optimized to the constant section address altogether?