Get the answers you need at Westonci.ca, where our expert community is always ready to help with accurate information. Get immediate and reliable answers to your questions from a community of experienced professionals on our platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A 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[])