2018-05-29

共用体union tab{int num;char name[10];}t1;

自定义数据类型typedef struct student stu;typedef int u16;typedef char u8;typedef double u64;

枚举类型#include enum color{re,ye=10,bl};

函数体外只可以定义,不可以有其他操作

结构体指针 typedef struct{int num;char name[10];struct{int year;int mon;int day;}birth;}student;

void test(int *s){*s=100;}

你可能感兴趣的:(2018-05-29)