Question: In the following code segment, assume array vals is created at memory location 0x4a00. What would be printed by the following code segment? int vals[]
In the following code segment, assume array vals is created at memory location 0x4a00. What would be printed by the following code segment? int vals[] = {4, 7, 11}; cout << *vals << ; int *valptr = vals; cout << valptr[1] << endl; A. 4 7 B. 7 11 C. 0x4a00 4 D. 0x4a00 7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
