What is endl c++?


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

Post New Answer

More C++ General Interview Questions

When you overload member functions, in what ways must they differ?

0 Answers  


Why the usage of pointers in C++ is not recommended ?

0 Answers   TCS,


How would you differentiate between a pre and post increment operators while overloading?

0 Answers  


List different attributes in C++?

0 Answers   Ericsson,


What does scope resolution operator do?

0 Answers  






What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor

0 Answers  


What is polymorphism and its type in c++?

0 Answers  


What is class invariant in c++?

0 Answers  


what is difference between internet and Internet?

12 Answers   College School Exams Tests, Microsoft, MIT, TCS,


Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }

2 Answers   CDAC, Wipro,


What are the different types of polymorphism 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  


Categories