[习题16]struct 和 指向struct的指针 : struct Person *who = malloc(sizeof(struct Person));
使用教材《“笨办法”学C语言(LearnCTheHardWay)》https://www.jianshu.com/p/b0631208a794ex6.c#include#include#include#includestructPerson{char*name;intage;intheight;intweight;};structPerson*Person_create(char*name,int