cpp std::string s = "Space Monkey";
std::transform(s.begin(), s.end(), s.begin(), std::toupper);
#include <string>
#include <algorithm>
#include <cctype>
int main()
{
std::string s = "Space Monkey";
std::transform(s.begin(), s.end(), s.begin(), std::toupper);
}