-
Read the following expression?
void (*p)(int);
-
- p is pointer to function passing void returning int
- p is pointer to void that converts its type to int
- p is pointer to function passing int returning void
- p is pointer to int that converts its type to void
- None of these
Correct Option: C
p is pointer to function passing int returning void