Home » C Programming » Pointers » Question
  1. Which of the following does not initialize p to null (assuming variable declaration of n as int n=0;)?
    1. int *p = &n – &n;
    2. int *p = n – n;
    3. int *p = &n;
    4. All of above
    5. None of these
Correct Option: C

int *p = &n;



Your comments will be displayed only after manual approval.