Why do we use inheritance?
No Answer is Posted For this Question
Be the First to Post Answer
Differences between inline functions and non-inline functions?
Which is the only operator in C++ which can be overloaded but NOT inherited?
which feature are not hold visual basic of oop?
what is the difference between function template and template of function?explain with example.
I hv a same function name,arguments in both base class and dervied class, but the return type is different. Can we call this as a function overloading? Explain?
What is oops and why we use oops?
why c++ is called OOPS? waht is inherutance? what is compiler?
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
can we make game by using c
What is overriding in oop?
Can a varargs method be overloaded?