InterviewSolution
Saved Bookmarks
| 1. |
How Do I Initialize A Pointer To A Function? |
|
Answer» This is the WAY to initialize a POINTER to a function void fun(int a) { void main() { void (*FP)(int); fp=fun; fp(i); } }This is the way to initialize a pointer to a function |
|