I suppose you could do something like this.


struct alignedmem {
char alignment[64]; // for 6 bits
char mem[]; // C99 Flexible Array Member
};

// then if size is the amount you...