Due to server problems the website is temporarily offline! Visit http://www.smorgasbordet.com/pellesc/ to download Pelles C.
#pragma pack(1) //pack structures on byte boundary typedef struct{ char a[3]; short b;} PackedStruct;#pragma pack() //restore standard packingPackedStruct my_struct;printf("%u bytes\n", sizeof(my_struct));