Merge pull request #13 from lyhellcat/patch-1

fix attribute name error
This commit is contained in:
Ruan YiFeng
2021-09-08 17:10:56 +08:00
committed by GitHub

View File

@@ -82,7 +82,7 @@ printf("%d\n", x.a); // 12
printf("%d\n", *foo_int_p); // 12
x.b = 3.141592;
printf("%f\n", x.g); // 3.141592
printf("%f\n", x.b); // 3.141592
printf("%f\n", *foo_float_p); // 3.141592
```