// For C++ libraries. #include // Library for strings. #include using namespace std; int main() { string word="Book"; cout << word << endl; word[1]='i'; word[2]='k'; word[3]='e'; cout << word << endl; return 0; }