Question: What is an idiomatic way to customize the representation of a custom struct in a formatted string?
- There is no customizing the string representation of a type.
- Build it in pieces each time by calling individual fields.
- Implement a method `String()` string
- Create a wrapper function that accepts your type and outputs a string.
Answer: The correct answer of the above question is Option C:Implement a method `String()` string