struct Teacher { int age; char name[24] ; }Teacher;
定义变量的时候应该为:
struct Teacher t1;
但是如果
typedef struct Teacher { int age; char name[24] ; }Teacher;
则定义的时候 直接为:
Teacher t1;
c语言中的结构体
原文:http://www.cnblogs.com/xiaochige/p/7010963.html