Question 1156 – Theory-of-Computation
May 12, 2024Question 9375 – Operating-Systems
May 12, 2024Question 17142 – NTA UGC NET JUNE-2023 Paper-2
What is x in the following program?
# include < stdio.h>
int main ( )
{
typedef (* (* arrfptr [31) () ) [10];
arrfptr x ;
return 0 ;
}
Correct Answer: C
x is a pointer
x is a array of three pointer
x is an array of three function pointer
Error in x declaration
Subscribe
Login
0 Comments