What is the correct way to initialize the following structure ?
struct Stats { size_t hitPoints; size_t strength; size_t agility; size_t intelligence; };
Stats someStats(hitPoints=30, strength=4, agility=8, intelligence=7);
Stats someStats(30, 4, 8, 7);
Stats someStats = {.hitPoints=30, .strength=4, .agility=8, .intelligence=7}
Stats someStats = {hitPoints=30, strength=4, agility=8, intelligence=7}