I'm currently wrapping up an assignment for class and i've been able to figure out most of the curveballs the professor threw at me but i've hit this one and it just seems strange. It seems he's declared... a pointer that is also a function?
struct data_node {
char name [25];
int data;
struct data_node *next;
};
struct data_node *find_node (struct data_node *linkedListPointer, int num);
how would I go about using this pointer that is also a function? Do I just fill it out with what I want? Thank you for any advice and assistance in advance!