Explain the isa and hasa class relationships. How would you implement each?
No Answer is Posted For this Question
Be the First to Post Answer
What is the limitation of cin while taking input for character array?
Define the process of handling in case of destructor failure?
To which numbering system can the binary number 1101100100111100 be easily converted to?
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 overloading unary operator?
How do I run c++?
How many types of classes are there in c++?
Define pure virtual function?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
Explain the difference between abstract class and interface in c++?
what you know about c++?
What is a smart pointer?