✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which is the output of the following code in GO
package main
import "fmt"
var i int =10
var J int16 = 20
func main() {
i:= 30
fmt.Printf("%v, %T", i, i)
}