标签: c struct
为什么要使用这个
typedef struct complex { int imag; float real; } comp;
代替这个
typedef struct { int imag; float real; } comp;
complex关键字是否可以使用? 我的意思是,我以后不会使用它,我会这样做:
complex
comp myvar;