home *** CD-ROM | disk | FTP | other *** search
- // Example: 163 from Library Reference
- #include "..\3D-Ware\dddware.h"
- #include <stdio.h>
- char string1[32];
- short count;
- void main(void)
- {
- for (count=0; count<26; count++)
- {
- dddStrnSet(string1, 'A'+count , count+1); // Set the string to the selected ascii char.
- printf("String 1 is :- %s\n",string1);
- }
- }
-