MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is correct declaration for a pointer to a function that returns a float? |
| A. | float f( ); |
| B. | float *f( ); |
| C. | float (*f) ( ); |
| D. | float* (*f)( ); |
| Answer» D. float* (*f)( ); | |