...
UGC NET CS 2014 Dec-Paper-2
May 22, 2024
Computer-Networks
May 22, 2024
UGC NET CS 2014 Dec-Paper-2
May 22, 2024
Computer-Networks
May 22, 2024

Question 4807 – UGC NET CS 2014 Dec-Paper-2

What does the following expression means ?
char *(*(*a[N]) ( )) ( );

Correct Answer: D

Question 12 Explanation: 
char *(*(*a[N]) ( )) ( ); /* an array of n pointers to function returning pointers to functions returning pointers to characters */
A
a pointer to a function returning array of n pointers to function returning character pointers.
B
a function return array of N pointers to functions returning pointers to characters
C
an array of n pointers to function returning pointers to characters
D
an array of n pointers to function returning pointers to functions returning pointers to characters.

Leave a Reply

Your email address will not be published. Required fields are marked *