Answer from cs61c-ax (Amanda Alfonso 15906918) for Question 2
void setTo5(int *pn) {
   *pn = 5;
}
/* the call in the main function to setTo5 should be setTo5(&n) */
