Answer from cs61c-ce (aretha samuel 15797004) for Question 2
setTo5(&n);

void setTo5(int *n)
{
   *n = 5;
}
