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.
I would like to know if I can use "_at_" to locate struct members to absolute memory locations. For instance, I have a struct variable defined as following,
xdata struct { unsigned char member1; unsigned char member2; . . unsigned char member5; unsigned char member6; } myStruct;
No, you can't do that. If something like that was allowed, it would violate all principles of the C programming languge.