Output the seventh character of the following sentence.

cout << hero[7];cout << hero[5];cout << hero(7);cout << hero[6];

Excellent! Like arrays, strings also start at index number 0! You'll be counting from 0 in no time!

Oops! Like arrays, strings also start at index number 0! You'll be counting from 0 in no time!