What are disadvantages of pointers?
What is fixed in c++?
What is data structure in c++?
Explain the difference between abstract class and interface in c++?
What is cout flush?
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 )?
What is class definition in c++ ?
Explain deep copy and a shallow copy?
Where are setjmp and longjmp used in c++?
How can virtual functions in c++ be implemented?
What is the standard template library (stl)?
what is object?
Can recursive program be written in C++?