一个愤青
发布时间:2015-03-18 09:20:55
#include <stdio.h>typedef struct persion { const char *name; int age;} persion[1], persion_t;int main(void){ struct persion a; struct persion *p = NULL; struct persion *q = NULL; .........【阅读全文】
发布时间:2015-03-17 21:39:39
#include typedef struct _stu { const char *name; int number;} stu;#define func(...) my_func((struct _stu){__VA_ARGS__})void my_func(struct _stu ms){ printf("%s: %d\n", ms.name.........【阅读全文】