adplus-dvertising
frame-decoration

Question

Which of the following statements is correct about the program given below?
class Bits
{
    public:
    static void MyFunction();
};
int main()
{
    void(*ptr)() = &Bits::MyFunction;
    return 0; 
}

a.

The program reports an error as pointer to member function cannot be defined outside the definition of class.

b.

The program reports an error as pointer to static member function cannot be defined.

c.

The program reports an error as pointer to member function cannot be defined without object.

d.

The program reports linker error.

Answer: (d).The program reports linker error.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following statements is correct about the program given below?

Similar Questions

Discover Related MCQs

Q. Which of the following statements are correct for a static member function?
1. It can access only other static members of its class.
2. It can be called using the class name, instead of objects.

Q. When an object goes out of scope, which function is called automatically?

Q. Destructors do not receive parameters and do not

Q. Scope resolution operator is denoted by

Q. A class data members and member functions belongs to

Q. Passing arguments to a destructor, or specifying return type to destructor, causes

Q. A destructor for a class is denoted by

Q. Access functions that is used to test the truth or falsity of conditions, is called

Q. If no constructor is defined for a class, the compiler

Q. A constructor that can be invoked with no arguments, is called as

Q. If a class wants to allow clients to read private data, the class can provide a

Q. Member selection operator is denoted by

Q. Which operator is combined with a pointer to an object to access that object's member?

Q. Non-member functions are defined as

Q. Member functions defined in a class definition are automatically

Q. Constructors do not have

Q. Which preprocessor directives are used to prevent header files from being included more than once in a program?

Q. The assignment operator can be used to assign an object to another object of the same type, this assignment by default performed by

Q. Which operator accesses a structure member via the object's variable name?

Q. Which keyword is used for structure definition?