C结构,为什么在“ typedef struct”之后使用ID?

时间:2018-10-16 09:03:18

标签: c struct

为什么要使用这个

typedef struct complex
{
  int imag;
  float real;
} comp;

代替这个

typedef struct
{
  int imag;
  float real;
} comp;

complex关键字是否可以使用? 我的意思是,我以后不会使用它,我会这样做:

comp myvar; 

0 个答案:

没有答案