Quiz 5 - ECGR4101/5101 - 9/17/07 1. What is your name? (1 pt) 2. Multiple Choice: Which of these will not initially allocate memory from the heap? (1 pt) a. allocate b. malloc <---- Answer c. realloc d. none of the above 3. Examine the code: void main ( ) { int i, j; int *p1, *p2; i = 4; j = 3; p1 = &i; p2 = &j; *p1 = *p1+*p2; p2 = p1; } What will the following memory locations hold after it executes? (2 pts each) Either is correct. x600 7 x606 x602 3 x606 x604 x600 3 x606 x600 7