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

  1.   // EXAMPLE OUTPUT-01
  2.  
  3.  #include <header.h>
  4.  
  5.  int main()
  6.  {
  7.     cout << "THE ANSWER IS "
  8.          << 65
  9.          << "\n" ;
  10.  
  11.     return 0 ;
  12.  }
  13.  
  14.