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

  1.  // EXAMPLE OUTPUT-13
  2.  
  3.  // TEST ios::basefield
  4.  
  5.  #include <header.h>
  6.  
  7.  int main()
  8.  {
  9.     cout.setf(ios::oct | ios::hex) ;
  10.     FORMATFLAGS() ;
  11.     cout.setf(ios::dec , ios::basefield) ;
  12.     FORMATFLAGS() ;
  13.  
  14.     return 0 ;
  15.  }
  16.