Update README.md

This commit is contained in:
Francis 2022-04-10 17:13:44 +08:00 committed by GitHub
parent 56e738ed26
commit 92dd0fe190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,10 +95,9 @@ Student s; //error
```c++
typedef struct Base1 {
int v1;
// private: //error!
int v3;
int v3;
public: //显示声明public
int v2;
int v2;
void print(){
printf("%s\n","hello world");
};