#include <stdio.h>
typedef struct {
char a;
int b;
short c;
} MyStruct;
void print_offsets() {
MyStruct m;
printf("Offset of a: %ld\n",(long)((char *)&m.a - (char *)&m));
printf("Offset of b: %ld\n", (long)((char *)&m.b - (char *)&m));
printf("Offset of c: %ld\n", (long)((char *)&m.c - (char *)&m));
printf("Size: %zu", sizeof(m));
}
int main() {
print_offsets();
return 0;
}