May 28, 2013 at 5:59pm
How many bytes will the pointer intPtr of type int move in the following statement? intPtr += 3 ;
(a) 3 bytes
(b) 6 bytes
(c) 12 bytes
(d) 24 bytes
May 28, 2013 at 7:17pm
3*sizeof(int) bytes. So (b), (c) or (d) depending on machine.