home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / tctnt / formioc.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-27  |  305 b   |  18 lines

  1. /* FORMIOC.CPP:  **IOS Member Functions**
  2. */
  3.  
  4. #include <iostream.h>
  5.  
  6. int main()
  7. {
  8.      int i = 11;
  9.  
  10.      cout.width( 10 );
  11.      cout.fill( '-' );
  12.      cout.setf( ios::left, ios::adjustfield );
  13.      cout.setf( ios::hex, ios::basefield );
  14.      cout.setf( ios::uppercase );
  15.      cout << i << "\n";
  16.      return 0;
  17. }
  18.