#include <iostream> #include <string> int main() { std::string theWord = "hello"; theWord[0] = theWord[0]+3; std::cout<<theWord<<std::endl; return 0; }