home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clip Art Extravaganza: Business & Home 2
/
CSB2.ISO
/
clip2
/
program2
/
hgrph101.arc
/
MAN.C
< prev
next >
Wrap
C/C++ Source or Header
|
1989-02-25
|
277b
|
17 lines
#include <conio.h>
#include "hgraph.h"
extern void mandel( double, double, double, double);
void main()
{
int i;
hgraph_init();
hgmode();
hshowpg();
mandel(0.0, 1.0, 0.0, 1.0);
i = getch();
htmode();
}