Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Go
easy
Go
pointers and receivers
Single-choice MCQ
What is the value of `p` after this code runs?
package main func main() { p := new(int) _ = p }