Say that I have a pointer to function theFunc. theFunc takes along a pointer that points to the address where theFunc is stored . Is this possible?
Using it would look like this:
funcPtr(funcPtr);
That calls the function pointed to by funcPtr, and then passes along the address of the pointer. I do not want to use void pointers because I want to change the function pointed to by funcPtr.