In the Introduction we already showed you how to dereference a pointer. You just put the *-operator in front of the pointer you want to dereference, to get access to its value. You have to dereference the pointer, when you just want to see the value or when you want to change it.
Now you should try to use pointers for yourself.
Change the following program to print "number: 581" without changing the main function.