#include using namespace std; int main(){ string s = "hello world"; char *str = "hello world"; char *str_1 = &str[2]; str++; cout << str << endl; return 0; }