Answer from cs61c-et (Bryant CHae 14937777) for Question 1
int main( ) {
int *intPtr;
int n;
intPtr = &n;
n = 5;
return 0;
}
