Jump to

v02-l1-structInit

What is the correct way to initialize the following structure ?

struct Stats {
    size_t hitPoints;
    size_t strength;
    size_t agility;
    size_t intelligence;
};

???