What is the difference between public, private, and protected inheritance?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me about virtual function
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
How many times will this loop execute? Explain your answer.
What Is A Default Constructor in C++ ?
What is Advantage and Use of THIS pointer in C++ – Scenarios?
Can we call C++ OOPS? and Why
How to convert integer to string in C++
Define namespace.
How will you execute a stack using a priority queue? (Push and pop should be in O (1)).
Tell How To Check Whether A Linked List Is Circular ?
CDPATH shell variable is in(c-shell)
Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }