Indexing
Since they’re arrays we can access the individual
Example: converting a string to upper case
while (str[index] != ‘\0’)
{str[index] = toupper(str[index]);}
When manipulating the individual members of a
string be careful not to replace the ‘\0’ with some