retagged by
1,475 views
4 votes
4 votes

What is the meaning of following declaration?

int(*p[7])();
  1. $p$ is pointer to function
  2. $p$ is pointer to such function which return type is array
  3. $p$ is array of pointer to function
  4. $p$ is pointer to array of function
retagged by

4 Answers

0 votes
0 votes
p is array of pointer to function

so, correct option is c
0 votes
0 votes
P is an array of 7 pointers that pints to functions which has return type int
Answer:

Related questions

2 votes
2 votes
2 answers
2
2 votes
2 votes
2 answers
3
admin asked Mar 31, 2020
6,324 views
The maximum combined length of the command-line arguments including the spaces between adjacent arguments is:$128$ characters$256$ characters$67$ charactersIt may very fr...
2 votes
2 votes
4 answers
4
admin asked Mar 31, 2020
1,021 views
How will you free the allocated memory?remove(var-name)free(var-name)delete(var-name)dalloc(var-name)