Explain how the virtual base class is different from the conventional base classes of the opps.
No Answer is Posted For this Question
Be the First to Post Answer
Can a constructor throw a exception? How to handle the error when the constructor fails?
What is a volatile variable in c++?
What are the four main data types?
What is do..while loops structure?
What do you mean by stack unwinding in c++?
Explain what is class definition in c++ ?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
What is the purpose of ios::basefield in the following statement?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
What is the Difference between "printf" and "sprintf"?
7 Answers iSoft, PentaWare, TCS,
What is a manipulative person?