What are manipulators used for?


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

Post New Answer

More C++ General Interview Questions

What is a set in c++?

0 Answers  


What is an inclusion guard?

0 Answers  


Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];

4 Answers   Quark,


Explain container class.

0 Answers  


What is main function in c++ with example?

0 Answers  






what is object?

7 Answers  


Specify some guidelines that should be followed while overloading operators?

0 Answers  


What is class invariant?

1 Answers  


What is the most useful programming language?

0 Answers  


What is a "Copy Constructor"?

2 Answers  


How the compilers arranges the various sections in the executable image?

1 Answers  


Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?

6 Answers   CSC,


Categories