InterviewSolution
| 1. |
How Do You Use A Pointer To A Function? |
|
Answer» The hardest part about using a pointer-to-function is declaring it. Consider an example. You want to CREATE a pointer, pf, that points to the strcmp() function. The strcmp() function is declared as SHOWN below The hardest part about using a pointer-to-function is declaring it. Consider an example. You want to create a pointer, pf, that points to the strcmp() function. The strcmp() function is declared as shown below |
|