Home » C Programming » Pointers » Question
  1. Read the following expression?
    void (*p)(int);
    1. p is pointer to function passing void returning int
    2. p is pointer to void that converts its type to int
    3. p is pointer to function passing int returning void
    4. p is pointer to int that converts its type to void
    5. None of these
Correct Option: C

p is pointer to function passing int returning void



Your comments will be displayed only after manual approval.