what kind of projects are suitable for c and c++


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

How the V-Table mechanism works?

6 Answers   HP,


Should the this pointer can be used in the constructor?

0 Answers  


What is "strstream" ?

1 Answers   Huawei,


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)

0 Answers  


What are the extraction and insertion operators in c++?

0 Answers  


What is boyce codd normal form in c++?

0 Answers  


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?

0 Answers  


Are there any special rules about inlining?

0 Answers  


What is a c++ vector?

0 Answers  


What are the manipulators in c++?

0 Answers  


What are the two main components of c++?

0 Answers  


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 )?

0 Answers   Maxobiz,


Categories