2013年3月24日 星期日

結構(structure)

structure 結構:定義新的資料類型,可將不同的資料類型綁在一起,成為新的資料類型。
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};
如此可以少打一些字。






沒有留言:

張貼留言