package main import ( "fmt" ) func main(){ b := 255 var a = &b fmt.Printf("Type of a is %T\n",a) fmt.Println("address of b is",a) }