v02-l1-structInit

(55/222)

What is the correct way to initialize the following structure ?

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

???