Suppose you have a pointer to a function: void(*ptf)(void* arg1, void* arg2);
void(*ptf)(void* arg1, void* arg2);
When you later invoke ptf with parentheses ptf(arg1, arg2); ho
ptf(arg1, arg2);