Answer from cs61c-ck (Allen Lee 16583554) for Question 1
int main() {
   int *intPtr;
   int n;
   intPtr = &n;
   n = 5;
   return 0;
}
