From 92dd0fe190d7582232955c765717b9fceddb503a Mon Sep 17 00:00:00 2001 From: Francis <455954986@qq.com> Date: Sun, 10 Apr 2022 17:13:44 +0800 Subject: [PATCH] Update README.md --- basic_content/struct/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/basic_content/struct/README.md b/basic_content/struct/README.md index bf93e8c..147723c 100644 --- a/basic_content/struct/README.md +++ b/basic_content/struct/README.md @@ -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"); };