File Stream C++ Tutorial

#include
ostream & setthex(ostream & stream)
{
  stream.setf(ios::hex|ios::uppercase|ios::showbase);
  return stream;
}
ostream & reset(ostream & stream)
{
  stream.unsetf(ios::hex|ios::uppercase|ios::showbase);
  return stream;
}
main()
{
  cout<  cout<  return 0;
}
200
200