What's true about setting a default value for a property in a structure?

We're initializing the property inside the structureWe can use the property right after initializing the structure instanceThe property's value is permanent

That's it! If we give a property a default value, we're basically initializing it inside the structure; then, we can use and change it unless it's a constant.

Whoops! If we give a property a default value, we're basically initializing it inside the structure; then, we can use and change it unless it's a constant.