home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / freedraft.tar.gz / freedraft.tar / FREEdraft-050298 / GEOMLIB2D / aaa.cpp next >
C/C++ Source or Header  |  1998-02-28  |  183b  |  23 lines

  1. #include <iostream.h>
  2.  
  3.  
  4.  
  5. int main()
  6. {
  7.  
  8. int* i = new int(5);
  9. int* j = new int(7);
  10.  
  11. cout << "i =" << i << "*i = " << *i << endl;
  12. cout << "j =" << j << "*j = " << *j << endl;
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. }
  21.  
  22.  
  23.