include <iostream>
int main()
{
std::string str = "C++ is a general-purpose programming language created by Bjarne Stroustrup";
str[0] = toupper(str[0]);
int len = str.length();
for (int i = 0; i < len; i++) {
if (str[i - 1] == ' ') {
str[i] = toupper(str[i]);
}
}
std::cout << str;
return 0;
}
/*
run:
C++ Is A General-purpose Programming Language Created By Bjarne Stroustrup
*/