Format Descriptor %s in printf()
The conversion specification %s prints a sequence of characters stored in the array stooge2 until '\0' is reached.
The terminating character '\0' is not printed.
If stooge2 array contains
Omitting the ending '\0' in a string is a serious programming error.