People often call a char * variable a pointer to a string; it means that the pointer points to a null-terminated array of characters. Not all ... ... <看更多>
This is just the way string literals work in C. String literals like "name" are arrays of characters, it is equivalent to the five element array {'n', 'a', ... ... <看更多>