I never used [bit fields](http://en.wikipedia.org/wiki/Bit_field) but they sound cool for ultra-low-level stuff.
struct cat {
unsigned int legs:3; // 3 bits for legs (0-4 fit in 3 bits)
unsigned int lives:4; // 4 bits for lives (0-9 fit in 4 bits)
// ...
};
cat make_cat()
{
cat kitty;
kitty.legs = 4;
kitty.lives = 9;
return kitty;
}
This means that `sizeof(cat)` can be as small as `sizeof(char)`.
----
Incorporated comments by [Aaron](http://stackoverflow.com/users/14153/aaron) and [leppie](http://stackoverflow.com/users/15541/leppie), thanks guys.