What is a pointer? Technology Community › Category: Golang › What is a pointer? 0 Vote Up Vote Down VietMX Staff asked 4 years ago A pointer variable can hold the address of a variable. Consider: var x = 5 var p *int p = &x fmt.Printf("x = %d", *p) Here x can be accessed by *p.