如果可以的话该怎么写
使用了typedef就不能再同一语句中申明变量了,就像typedef int tni num;这一句,肯定不是原来的意思。
typedef struct stu{
char name[20];
int age;
char addr[50];
}stu_t;
......
stu_t stu_1={"ZhangSan",20,"BeiJing"};
printf("%s\n,%d\n",stu_1.name,stu_1.age);
struct stu stu_2={"LiSan",21,"NanJing"};
printf("%s\n,%d\n",stu_2.name,stu_2.age);