#include #include #include int main(){ std::string mixed_case_5 = "That made a lot of noise, which scared a raccoon out of the attic"; std::transform(mixed_case_5.begin(), mixed_case_5.end(), mixed_case_5.begin(), toupper ); std::cout << mixed_case_5 << std::endl; return 0; }