home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / debug / zeroptr / zeroptr.cpp < prev   
Encoding:
C/C++ Source or Header  |  1996-10-29  |  403 b   |  15 lines

  1. //************************************************************
  2. // Problem Determination - Using a Zero Pointer
  3. //
  4. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. // All Rights Reserved.
  7. //************************************************************
  8. #include <iframe.hpp>
  9.  
  10. void main( )
  11. {
  12.   IFrameWindow* pframe = 0;
  13.   pframe->show();
  14. }
  15.