Merge pull request #9 from jiaoqiyuan/patch-1

fix struct name typo error.
This commit is contained in:
Ruan YiFeng
2021-09-07 22:15:17 +08:00
committed by GitHub

View File

@@ -264,7 +264,7 @@ myStruct.prop == (*ptr).prop == ptr->prop
struct 结构的成员可以是另一个 struct 结构。
```c
struct breed {
struct species {
char* name;
int kinds;
};