(*max)(num1, num2, num3);:

a. Is the header for function max.
b. Is a call to the function pointed to by max.
c. Is the prototype for function max.
d. Is a declaration of a pointer to a function called max.


b. Is a call to the function pointed to by max.

Computer Science & Information Technology

You might also like to view...

Given the following class, what would be the best declaration for a constructor that would allow the user to initialize the object with an initial age and cost?

class Wine { public: Wine(); int getAge(); float getCost(); private: int age; float cost; } a. int getAge(int newAge); b. Wine(); c. Wine(int age); d. Wine(int newAge, float newCost);

Computer Science & Information Technology

Most ____ techniques have adjustable compression levels so that you can decide how much data you can afford to lose.

A. spam filter B. lossy compression C. lossless compression D. e-mail reply

Computer Science & Information Technology

A ________ helps you complete projects, keep within your budget, stay on schedule, and work with others

A) personal information manager B) document management system C) word processor D) project management program

Computer Science & Information Technology

A ___________________ assessment attempts to identify what needs to be protected, what the pressures are against it, and how susceptible the current protection is.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology