Explain how a pointer to function can be declared in C++?
No Answer is Posted For this Question
Be the First to Post Answer
When is dynamic checking necessary?
Can we inherit constructor in c++?
Why c++ is not a pure oop language?
Explain how to initialize a const member data.
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
Why struct is used in c++?
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
Tell me can a pure virtual function have an implementation?
How many namespaces are there in c++?
List the advantages of inheritance.
write the prime no program in c++?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;