What is problem with overriding functions?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is an associative container in c++?

0 Answers  


Explain selection sorting. Also write an example.

0 Answers  


What is the difference between a "copy constructor" and an "assignment operator" in C++?

0 Answers   Genpact,


What is a far pointer? where we use it?

0 Answers  


Write about c++ storage classes?

0 Answers  






When must you use a pointer rather than a reference?

0 Answers  


Can you please explain the difference between static and dynamic binding of functions?

0 Answers  


How const int *ourpointer differs from int const *ourpointer?

0 Answers  


Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.

0 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


Is empty stack c++?

0 Answers  


What is the difference between cin.read() and cin.getline()?

0 Answers  


Categories