UGC NET CS 2016 July- paper-2
March 15, 2024JAVA
March 16, 2024UGC NET CS 2016 July- paper-2
|
Question 12
|
The following statement in ‘C’
int (*f())[ ];
declares
int (*f())[ ];
declares
|
a function returning a pointer to an array of integers.
|
|
|
a function returning an array of pointers to integers.
|
|
|
array of functions returning pointers to integers.
|
|
|
an illegal statement.
|
Question 12 Explanation:
int (*f())[ ] declare a function returning a pointer to an array of integers.
Correct Answer: A
Question 12 Explanation:
int (*f())[ ] declare a function returning a pointer to an array of integers.
