目录调整

This commit is contained in:
2025-03-17 19:45:51 +08:00
parent c797380b32
commit b28d6fef87
17 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#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;
}