Files
lanqiao/test100.cpp
2025-03-16 19:57:02 +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;
}