The error message you are getting from MinGW/Windows compiler strongly suggests that you are compiling this code as C++. In C language string literals have char[N] type (as opposed to const char[N] in C++). In C language you should not get this error message. Nevertheless, even in C string literals are non-modifiable, meaning that it is a good idea to stick to const char * pointers when pointing to string literals.
Your question number 1 is a bit weird. String literals are nameless objects, which means that initialization is the only way to directly make a pointer to point to a string literal. There's no other way. Later you can copy your non-const pointer to other non-const pointers, which is OK. Just remember that you are not allowed to write anything into a string literal through those pointers: string literals are non-modifiable.
Your question 2 also makes little sense. "Visibility" is a property of a name. String literals are nameless objects. They are not visible anywhere. They can't be visible, since they have no names. Since they have no names, the only way to "grab" a string literal and hold on to it is to attach a pointer to it during pointer initialization (as in your examples). Visibility has nothing to do with it at all. String literals do indeed have static storage duration, which means that they "live forever": they exist as long as the program runs. In your example, string literals "Hans" and "Gretel" continue to live even after the foo exits, meaning that the pointer returned by foo remains valid.
The answer to your question 3 is: implicit conversions from const pointers to their non-const counterparts never existed in C language, i.e. it has always been invalid. You have to use an explicit cast in order to perform such a conversion.
fooas returningconst char*. And when compiled as C++, the code becomes invalid. I'm not enough a standard expert to explain why precisely... I would have expected GCC to give some warning (but even gcc 4.6 with-Wall -Wextradon't). – Basile Starynkevitch Nov 23 '11 at 15:29newon the off chance you may want to one day compile this with a C++ compiler" would be damnably annoying :-) – paxdiablo Nov 23 '11 at 15:33gcc -Wwrite-stringsgives an appropriate warning. This is probably not part of-Wextrabecause some parts of the C library may depend on this feature; e.g.,strerrorhas return typechar*but may be implemented using an array of string literals. – larsmans Nov 23 '11 at 15:36staticallocation class, shouldn't they be technically invisible from outside of the function foo()? Yes, I know, a static variable is only a disguised global, and as such they live until the program is terminated, and in turnp_chremains a valid pointer - but can I rely on this behavior? – peter.slizik Nov 23 '11 at 15:43