What is destructor give example?
No Answer is Posted For this Question
Be the First to Post Answer
how does a main() in C++ is different from main() in C?
How do you make derived class as an abstract class?
for example A,B,C,D are class all the 4 class contain one method who() but the method who() implementaion is differnet among each class. the relation among the 4 class are A is base class and is inherited by B and C.and from this two B and C where D is inherited. the question is i want to display the output who() method in all the classes(A,B,C,D)the output of who() method is diferrent amond all the class(A,B,C,D) ------A------ virtuval who(print a) override | | who(print b) B C override who(print c) | | -------D------ override who(print d)
advantage and disadvantage in c++>>oops and what are the questions ask for interview in c++>>oops. could you tell me or reply me
What is byval and byref? What are differences between them?
What are functions in oop?
what is the diffrence between c# and c++
What is the diamond problem in inheritance?
Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345
Write a program to find out the number of palindromes in a sentence.
How to overload postfix operator in c++
Write an operator overloading program to Overload ‘>’ operator so as to find greater among two instances of the class.