#include #include int main() { printf(\"%d\\n\",sizeof(\"S\\065AB\")); printf(\"%d\\n\",sizeof(\"S65AB\")); printf(\"
A literal character string is an array of exactly the size needed to hold all the characters and an extra terminating zero-byte.
So, "hello" has type char[6] and sizeof yields 6.
"hello"
char[6]
sizeof