c语言的结构体使用方法:

1. 第一种方法:

声明

struct Person {    float weight;    float height;}

使用

struct Person lloyd;lloyd.weight = 60;lloyd.height = 175;

2. 第二种方法,使用typedef

声明

typedef struct {    float weight;    float height;} Person

使用

Person lloyd; //不用写struct了

typedef其他用法

如:

typedef char Line[81]; //定义Line为char[81]的数组Line haha, hehe; //haha 与 hehe都是char[81]类型

上面代码相当于:

char haha[81];char hehe[81];