程序如下:typedef struct {float real,imag;}compx;
compx s[257];
compx EE( compx b1, compx b2)
{ compx b3 ; b3.real=b1.real*b2.real-b1.imag*b2.imag ;
b3.imag=b1.real*b2.imag+b1.imag*b2.real ; return(b3); } 在sublime编译器可以编译,但在ccs5中却编译出差,如图所示
这是哪里配置错了