home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 099 / IOSTREAM.ZIP / EX_O14.CPP < prev    next >
C/C++ Source or Header  |  1993-01-07  |  293b  |  18 lines

  1.  // EXAMPLE OUTPUT-14
  2.  
  3.  // TEST THE flags MEMBER FUNCTION
  4.  
  5.  #include <header.h>
  6.  
  7.  int main()
  8.  {
  9.     long value = cout.flags(0) ;
  10.     cout.setf(ios::hex , ios::basefield) ;
  11.     cout << "value is "
  12.          << value
  13.          << '\n' ;
  14.     FORMATFLAGS(cout) ;
  15.  
  16.     return 0 ;
  17.  }
  18.