The document describes 4 programs that use string functions in C++. Program 1 accepts two words of equal length. Program 2 accepts words ending in 'y'. Program 3 produces a full name by concatenating first and last names. Program 4 determines if a word is a palindrome by reversing the string and comparing it to the original. Solutions for each program are provided, such as getting string lengths, checking specific characters, reversing strings, and ignoring case when comparing.
The document describes 4 programs that use string functions in C++. Program 1 accepts two words of equal length. Program 2 accepts words ending in 'y'. Program 3 produces a full name by concatenating first and last names. Program 4 determines if a word is a palindrome by reversing the string and comparing it to the original. Solutions for each program are provided, such as getting string lengths, checking specific characters, reversing strings, and ignoring case when comparing.