What are the advantages of inheritance in c++?
When does the c++ compiler create temporary variables?
How does code-bloating occur in c++?
i want the NIC programmer-B model papaer pattren, iwant the all model papers?
What does ios :: app do in c++?
Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?
When there is a global variable and local variable with the same name, how will you access the global variable?
Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?
What is general form of pure virtual function? Explain?
What is the exit function in c++?
How is c++ different from java?
Can non-public members of another instance of the class be retrieved by the method of the same class?
difference between macro and function?