1--在使用typedef定义结构时,可以不需要声明原结构名字,但之前讲过在单纯定义一个结构时必须要有名字。
#include <stdio.h>
typedef struct {
int year;
int month;
} date;
int main() {
date a;
a.month=1;
printf("%d",a.month);
}
1
--------------------------------
Process exited after 0.04422 seconds with return value 0
请按任意键继续. . .
2--这个运用暂时还看不懂