Implement the following recursive function processString, which receives as parameters a string str, a single character ch, and the length of the string n. The processString function replaces each occurrence of ch in the str with its uppercase.
Example: If str contains "C Programming Is Cool" and ch is 'i', then str becomes "C ProgrammIng Is Cool".