零时文件变动

This commit is contained in:
2025-03-16 19:57:02 +08:00
parent aec38711bc
commit 5585d528a4

View File

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