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

  1.  // EXAMPLE OUTPUT-23
  2.  
  3.  // HOW TO SHOW THE SIGN OF A POSITIVE
  4.  // NUMBER
  5.  
  6.  #include <header.h>
  7.  
  8.  int main()
  9.  {
  10.     cout.setf(ios::showpos) ;
  11.     cout << 65 << '\n' ;
  12.  
  13.     return 0 ;
  14.  }
  15.