Files
lanqiao/00lanqiao chap/test100.cpp
2025-03-17 19:45:51 +08:00

12 lines
198 B
C++

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