Which is best ide for 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;
What are disadvantages of pointers?
How can you link a c program with a c function?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Explain the difference between new() and malloc() in c++?
Is c++ a software?
Do you know what are the new features that iso/ansi c++ has added to original c++ specifications?
What is the function of the keyword ‘volatile’ in C++?
Differentiate between late binding and early binding. What are the advantages of early binding?
What is the advantage of c++ over c?
Are vectors passed by reference c++?
What is virtual function? Explain with an example