home *** CD-ROM | disk | FTP | other *** search
- // 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;
- }
-