Data Structures
typedefstruct{
char name[32]; // 32 bytes
char postalcode[16]; // 16 bytes
uint32_t partner_num; // 4 bytes
float quota; // 4 bytes
char empty[8]; // 8 bytes to lineup the structure to multiples of 16 bytes
}; // Total = 64 bytes
Last updated