How many bytes will the pointer intPtr of type int move in the following statement? intPtr += 3 ;

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
3*sizeof(int) bytes. So (b), (c) or (d) depending on machine.
Topic archived. No new replies allowed.