We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi, I have defined a struct in test.h file like this
struct Measurement_results { float a; complex float b; };
Now I use the struct in test.c file
struct Measurement_results myResult; myResult.a=1.0; myResult.b=1+I;
The code is compiling Ok,But I get this warring
float _ComplexKB: Unexpected type: 6
what's wrong or what's the correct way of doing it?