Answer from cs61c-eg (Ramanarayan Vasudevan 15938560) for Question 2
void setTo5(int *n) {
   *n = 5;
}

