10.7 — Default member initialization
When we define a struct (or class) type, we can provide a default initialization value for each member as part of the type definition. This process is called , and the initialization value is called a . Here’s an example: struct Something { int x; // no initialization value (bad) …