Strings
Strings
2. Write a C++ program to change every letter in a given string with the letter
following it in the alphabet (i.e. a becomes b, p becomes q, z becomes a).
3. Write a C++ program to capitalize the first letter of each word in a given string.
Words must be separated by only one space.
8. Write a C++ program to change the case (lower to upper and upper to lower
cases) of each character in a given string.
Example:
Sample Input: Pythpn
Sample Output: pYTHON