/* Create two functions toCamelCase() and toSnakeCase() that each take * a single string and convert it into either camelCase or snake_case. * If you're not sure what these terms mean, check the Resources tab above. */ // rule 1, check for capitals // rule 2, check for underscore std::string toSnakeCase(std::string str) { for(int i = 0;i