c语言先声明后定义结构体以及配合typedef时怎么用
时间: 2024-05-01 09:18:25 浏览: 50
C/C++中的结构体声明: struct 和 typedef struct 用法
你可以这样先声明结构体:
```c
struct example_struct;
```
然后定义结构体:
```c
struct example_struct {
int example_field;
};
```
最后使用typedef定义结构体类型的别名:
```c
typedef struct example_struct example_type;
```
这样就可以使用example_type代替struct example_struct了。
阅读全文