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 );
You might also like to view...
How can an external referenced block be updated?
What will be an ideal response?
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
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
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