Image-Processing
April 11, 2025NTA UGC NET Aug 2024 Paper-2
April 11, 2025NTA UGC NET Aug 2024 Paper-2
|
Question 87
|
Which of the following is the correct way to declare a functional pointer in C?
|
int *func (int, int);
|
|
|
int (*func) (int, int);
|
|
|
int (func*) (int, int);
|
|
|
int *func* (int, int);
|
Correct Answer: B
