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