Which of the following declares a pointer ptr to a class member function in class Check that takes an int argument and returns a bool?

a. bool:( int ) ( *Check::ptr );
b. Check::( bool ( *ptr )( int ) );
c. bool ( Check::*ptr )( int );
d. bool*( int ) Check::ptr;


c. bool ( Check::*ptr )( int );

Computer Science & Information Technology

You might also like to view...

How can an external referenced block be updated?

What will be an ideal response?

Computer Science & Information Technology

When you log onto UNIX, the operating system selects your __________ directory as your initial __________ directory.

a. home/working b. root/working c. root/home d. there is no default

Computer Science & Information Technology

In the 2-D array declaration: int matrix[10][20]; the rows are represented by which number?

A. 20 B. 2 C. 10 D. A and C

Computer Science & Information Technology

Which of the following can occur?

a) A running process may suspend itself. b) A running process may be suspended by a blocked process. c) A running process may be suspended by a ready process. d) none of the above

Computer Science & Information Technology