#include "common.h" void hanako(human *a) { /* 花子さんが実際にいじる部分 */ printf("%sさんの身長は%dcm, 体重は%.1fkgだよ\n", a->name, (int)(100*a->height), a->weight); }