My application has a defined structure:
typedef struct zsSysVersionMsg_tag
{
WORD cmd;
BYTE len;
} zsSysVersionMsg_t;
I would expect sizeof(zsSysVersionMsg_t) to evaluate to 3. However, when I run my application it evaluates to 4. Can someone explain why this is? (I really need it to evaluate to 3.) Thanks.