Answer:
Length of char array: sizeof(arr)
Length of a string object: myString.length()
Step-by-step explanation:
The sizeof approach is generally not recommended, since this information is lost as soon as you pass the array to a function, because then it becomes a pointer to the first element.