Answer from cs61c-ck (Allen Lee 16583554) for Question 3 I found it confusing how pointers have the same "type" as what they point to. Like a pointer to an int is declared int *var, but it isn't really an int. I thought it'd be *int var, but I guess that makes pointer assignments more difficult.