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

  1.  // EXAMPLE OUTPUT-24
  2.  
  3.  // HOW TO PRINT HEX DIGITS IN
  4.  // UPPER CASE LETTERS
  5.  
  6.  #include <header.h>
  7.  
  8.  int main()
  9.  {
  10.     cout.setf(ios::uppercase | ios::showbase) ;
  11.     cout.setf(ios::hex , ios::basefield) ;
  12.     cout << 171 << '\n' ;
  13.  
  14.     return 0 ;
  15.  }
  16.