0

Which stream functions in C++ control the formatting of input and output values of a class

Praetorian
  • 106,671
  • 19
  • 240
  • 328
Cin Sb Sangpi
  • 687
  • 3
  • 7
  • 22
  • Do you mean the io manipulators? See http://stackoverflow.com/questions/119098/which-i-o-library-do-you-use-in-your-c-code/119194#119194 – Martin York Jul 14 '11 at 08:10

1 Answers1

2

There are manipulator functions. Also, you can overload the << and >> operators.

Martin York
  • 257,169
  • 86
  • 333
  • 562
Dan
  • 1,927
  • 2
  • 24
  • 35