Answer from cs61c-be (Tony Yiu 15099596) for Question 2
void setTo5(int *pn)
{
  *pn = 5;
}
