Strings are just an array of characters
They always end with \0
so when you do something like printf("%s", "sex")
it assumes your string ends with a null terminator.
Initialization
Yes, strings have a special initialization specifically for them which is ""
, how special!