Multiple choice

Consider the data given below: Variable Address Contents p 2568 425 q 4284 2568 r 6242 4284 What is the value of *(&q)?

  1. 6242

  2. 4284

  3. 2568

  4. None these

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

&q is the address of q (4284). *(&q) is the content at that address, which is 2568.