What is true about char style strings?

They are an array of char-type valuesThey need to have a size one larger than the number of lettersThey end in a null characterAs a general rule we should not use them to create strings.

Yup! All of these are true! We should use the string class creation method instead of this!

Close! All of these are true! We should use the string class creation method instead of this!