This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

为什么正确的程序,在CCS5中却编译不了



程序如下: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中却编译出差,如图所示

 

这是哪里配置错了