Answer from cs61c-ew (Joo-Rak Son 16103505) for Question 2
#include <stdio.h>

void setTo5(int* ad) {
  *ad = 5;
}

int main() {
  int n = 27;
  setTo5(&n);
  printf("n = %d\n", n);
  return 0;
}


