Welcome to Westonci.ca, your ultimate destination for finding answers to a wide range of questions from experts. Join our Q&A platform and connect with professionals ready to provide precise answers to your questions in various areas. Explore comprehensive solutions to your questions from knowledgeable professionals across various fields on our platform.

In C++,given an array of capital letters, change the array so that every other letter is lowercase. Use the tolower() method and only use one return statement. Do not add or change parameters. * Example - [ L, V, F, D, C ] Example output: [ L, v, F, d, C ] static void Test8(char letters[])