Solved

Which of the Following Declares a Pointer Ptr to a Class

Question 14

Multiple Choice

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;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions