Home » C Programming » Pointers » Question
  1. Comment on the following pointer declaration.
    int *p, n;
    1. p and n both are not pointers to integer
    2. p is a pointer to integer, n may or may not be
    3. p and n, both are pointers to integer
    4. p is a pointer to integer, n is not
    5. None of these
Correct Option: D

p is a pointer to integer, n is not



Your comments will be displayed only after manual approval.