๐Pointers WorkshopWORKSHOP
1
2
3
4
5
Step 1
Declare `n := 42`, then create a pointer `p := &n`. Print the value at the pointer using `*p`. You should see `42` in the output.
โ Enter (Mac) ยท Ctrl+Enter (Win/Linux)
Step 1
Declare `n := 42`, then create a pointer `p := &n`. Print the value at the pointer using `*p`. You should see `42` in the output.