#define T Stack_T typedef struct T *T;
Then what does T in struct T mean,the one defined by #define or
T
struct T
#define
4条回答 南笙 (楼主) 2021-01-07 01:28 The T represents Stack_T so, you can read the typedef as: typdef struct Stack_T *Stack_T; so every T in your code is replaced as Stack_T during compiler compilation. 0 讨论(0) 查看其它4个回答 发布评论: 提交评论 加载中... 自定义标题段落格式字体字号代码语言点击上传x 验证码 看不清? 提交回复
The T represents Stack_T so, you can read the typedef as:
Stack_T
typdef struct Stack_T *Stack_T;
so every T in your code is replaced as Stack_T during compiler compilation.
热议问题