#include struct stuff { int a; char b; size_t c; } __attribute__((packed)); int main(){ struct stuff our_stuff; our_stuff.a = 5; our_stuff.b = 42; our_stuff.c = 64; return 0; }