c 语言typedef struct
时间: 2023-04-12 07:05:08 浏览: 188
CC中typedefstruct和struct的用法.doc
"typedef struct" 是 C 语言中的一种定义结构体的方法。它可以将结构体定义为新的类型,以便更简洁地定义结构体变量。例如:
```
typedef struct {
int x;
int y;
} Point;
Point p;
```
上面的代码定义了一个名为 Point 的结构体类型,并使用它定义了一个名为 p 的结构体变量。
阅读全文