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

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