Forward declaration. */ typedef struct person_t person_t; struct person_t { char *name; unsigned age; }; int main(void) { person_t p ...
確定! 回上一頁