char* str = “ABC\n”;
When asked "How many characters are allocated for this string?" why is the answer 5?
3 alphabetic characters + 1 escape character + 1 end of string [\0] character
\0