MCQOPTIONS
Saved Bookmarks
| 1. |
The prototype declaration for a pointer to a function which returns a pointer to an integer is: |
| A. | int (**pfi)(); |
| B. | int (*)(*pfi)(); |
| C. | (*int) pfi (); |
| D. | int * (*pfi)(); |
| Answer» E. | |