Suppose we want to declare a pointer to a function which has a float return type, and two parameters: the first one an integer and the second one a string. We want to name the pointer fptr. The declaration would look like this:

A. float (fptr) (int, string);
B. float (fptr) (int, string);
C. float (fptr) (int, string);
D. float ( int, string) fptr;

D

Computer Science & Information Technology

You might also like to view...

The Switch Row/Column button is located in the the Data group on the ________ tab

A) Layout B) Format C) View D) Design

Computer Science & Information Technology

Which of the following statements is false?

a. Path method isAbsolute returns a boolean indicating whether a Path represents an absolute path to a file or directory. b. Files static method getLastModifiedTime receives a Path and returns a FileTime (package java.nio.file.attribute) indicating when the file was last modified. c. Files static method size receives a Path and returns a long representing the number of bytes in the file or directory. For directories, the value returned is platform specific. d. All of the above are true.

Computer Science & Information Technology