typedef:更改資料類型的名稱。
原本的:
struct student{
char name[20];int chinese;
float english;
float math;
};
struct student stu1={"Mary",80,60.4,39.0};
更改後的:
typedef struct student{
char name[20];int chinese;
float english;
float math;
}stu;
stu stu1={"Mary",80,60.4,39.0};
如此可以少打一些字。
沒有留言:
張貼留言