NOTE: This submission was received late. The deadline was Wed Jun 23 11:00:00 2004 but the submission was not received until Sat Jul 3 14:37:07 2004. We will grade the last on-time submission for this quiz. Your Answer for Question 1: int main() { int *intPtr; int n; intPtr = &n; n = 5; return 0; } Your Answer for Question 2: void setTo5(int *a) { *a=5; } int main() { int n=27; setTo5(&n); printf("n = %d\n", n); /* should print n = 5 */ return 0; } Your Answer for Question 3: Printf is confusing compared to cout in C++. Your unique submission ID is quiz1-2-1-cs61c-fy-1088890627-3191.