edited by
179 views
0 votes
0 votes

 

What is $\mathrm{x}$ in the following program?

# include < stdioh >
int main ( )
{typedef (*(* arrfptr[3])())[10];
arrfptr x ;
return 0 ;
}

 

  1. $x$ is a pointer
  2. $x$ is a array of three pointer
  3. $x$ is an array of three function pointer
  4. Error in $x$ declaration
edited by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
3
admin asked Jul 28, 2023
195 views
There are $M$ points on one straight line $A B$ and $n$ points on another straight line $A C$ none of them being $A$. How many triangles can be formed with these points a...