InterviewSolution
Saved Bookmarks
| 1. |
typedef int (*PFI)(char *, char *)creates ___________(a) type PFI, for pointer to function (of two char * arguments) returning int(b) error(c) type PFI, function (of two char * arguments) returning int(d) type PFI, for pointerI had been asked this question in an interview for internship.My doubt stems from Typedefs topic in division Structures, Unions and Bit-Fields in C of C |
|
Answer» CORRECT choice is (a) type PFI, for pointer to function (of two CHAR * arguments) RETURNING int Best explanation: NONE. |
|