What will this code print?
var n int fmt.Println (n)
nil
1
This is because in Go, when a variable is declared but not explicitly initialized, it is assigned a default zero value based on its type. For integers like n, the zero value is 0.
0
a random value