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.
struct structSeperate { unsigned char uaHigh; unsigned char uaLow; }; union OneIntorTwoBytes { unsigned int un; struct structSeperate ua; }; void AFunction() { OneIntorTwoBytes unionMy; ... ...unionMy...// ... } In the above example, Could you please explain how many bytes of free mem will be allocated for AFunction()? How many bytes of free mem will be allocated for the whole module?