What are the manipulators in c++?



What are the manipulators in c++?..

Answer / Ramakant Sachan

Manipulators in C++ are functions that modify the behavior of standard input or output streams. Examples include std::setw (for setting the field width), std::endl (for inserting a newline and flushing the buffer), and std::showbase (to display base for integers).

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What are associate containers?

1 Answers  


What is do..while loops structure?

1 Answers  


What is c++ try block?

1 Answers  


What is this weird colon-member (" : ") syntax in the constructor?

1 Answers  


How do you declare A pointer to function which receives an int pointer and returns a float pointer

1 Answers  


Why should you learn c++?

1 Answers  


which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?

1 Answers  


Write about the scope resolution operator?

1 Answers  


Does c++ cost money?

1 Answers  


What is the difference between structures and unions?

1 Answers  


What c++ library is string in?

1 Answers  


Can you please explain the difference between using macro and inline functions?

1 Answers  


Categories