home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Virtual Reality Madness
/
VRMAD96_ONE.ISO
/
virtek
/
libex
/
libex120.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-24
|
414b
|
14 lines
// Example: 120 from Library Reference
#include "..\3D-Ware\dddware.h"
#include <stdio.h>
short count;
short main(void)
{
for (count=0; count<23; count++)
{
printf("The random number is %d\n",dddRnd()); // Call the pseudo random number
// generator and print the result.
}
return 0;
}