home *** CD-ROM | disk | FTP | other *** search
/ MS DOS Archives 1 / MS-DOS_Archives_Volume_One_Walnut_Creek.iso / msdos / graphics / hgrph101.arc / MAN.C < prev    next >
C/C++ Source or Header  |  1989-02-25  |  277b  |  17 lines

  1. #include <conio.h>
  2. #include "hgraph.h"
  3.  
  4. extern void mandel( double, double, double, double);
  5.  
  6. void main()
  7. {
  8.         int i;
  9.  
  10.         hgraph_init();
  11.         hgmode();
  12.         hshowpg();
  13.         mandel(0.0, 1.0, 0.0, 1.0);
  14.         i = getch();
  15.         htmode();
  16. }
  17.