NTA UGC NET Dec 2023 Paper-2
April 14, 2024NTA-UGC-NET 2021 Dec & 2022 June Paper-1
April 14, 2024Question 3559 – UGC NET CS 2016 Aug- paper-2
The following ‘C’ statement :
int *f [ ] ( );
declares:
Correct Answer: B
Question 12 Explanation:
int *f [ ] ( ); It declares array of functions returning pointers to integers.
A function returning a pointer to an array of integers.
Array of functions returning pointers to integers.
A function returning an array of pointers to integers.
An illegal statement.