void f() { char *c = \"Hello World!\" }
Where is the string stored? What\'s the property of it? I just know it is a constant, what else? Can I
It's implementation defined. Most of the time that would be stored in a string table with all the other strings in your program. Generally you can treat it like a global static const variable except it's not accessible outside your function.