Post Made Community Wiki by Community
show/hide this revision's text 3 Fixes suggested by Aaron

I never used bit fields 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 less than 2 * sizeof(intas small as sizeof(char).


Incorporated comments by Aaron and leppie, thanks guys.

show/hide this revision's text 2 Fix comment (thanks leppie)

I never used bit fields but they sound cool for ultra-low-level stuff.

struct cat {
    int legs:3;  // 3 bits for legs (0-4 fit in 3 bits)
    int lives:4; // 4 bits for lives (0-9 fit in 9 4 bits)
    // ...
};

cat make_cat()
{
    cat kitty;
    kitty.legs = 4;
    kitty.lives = 9;
    return kitty;
}

This means that sizeof(cat) can be less than 2 * sizeof(int)

show/hide this revision's text 1