what kind of projects are suitable for c and c++
How the V-Table mechanism works?
Should the this pointer can be used in the constructor?
What is "strstream" ?
What does getch() do according to the ANSI C++ standard a) Reads in a character b) Checks the keyboard buffer c) Nothing in particular (Its not defined there)
What are the extraction and insertion operators in c++?
What is boyce codd normal form in c++?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
Are there any special rules about inlining?
What is a c++ vector?
What are the manipulators in c++?
What are the two main components of 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 )?