InterviewSolution
Saved Bookmarks
| 1. |
Both of the following declarations for function pointers are equivalent. Second one (i.e. with typedef) looks cleaner./* First Declaration */int (*funPtr1)(int), (*funPtr2)(int);/* Second Declaration*/typedef int (*funPtr)(int);funPtr funPtr1, funPtr2;(A) TRUE(B) FALSE |
| Answer» | |