Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyGozero valuesSingle-choice MCQ

What does this print, given that the struct fields use their zero values?

type Config struct { Name string Retries int Active bool } var c Config fmt.Printf("%q %d %t", c.Name, c.Retries, c.Active)