How do you invoke a base member function from a derived class in which you have not overridden that function?
No Answer is Posted For this Question
Be the First to Post Answer
What is buffering in c++?
What are the differences between a struct in C and in C++?
When we use Abstract Class and when we use Interface?where we will implement in real time?
What is oop in c++?
How java is different from c and c++?
To what does “event-driven” refer?
What is a "RTTI"?
What is Virtual Inheritance?
Is c better than c++?
Can we sort map in c++?
What is multithreading and what is its use?Whats are multithreading techniques used in C++?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?