Home » C Programming » Pointers » Question
  1. Which of the following arithmetic operation can be applied to pointers p and q?
    (Assuming initialization as int *p = (int *)6; int *q = (int *)7;)
    1. p / q
    2. p + q
    3. p – q
    4. p * q
    5. None of these
Correct Option: C

p – q



Your comments will be displayed only after manual approval.