home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Madness / VRMAD96_ONE.ISO / virtek / libex / libex163.c < prev    next >
C/C++ Source or Header  |  1995-08-24  |  388b  |  14 lines

  1.                                               // Example: 163 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. #include  <stdio.h>
  4. char     string1[32];
  5. short    count;
  6. void  main(void)
  7. {
  8.   for  (count=0; count<26; count++)
  9.   {
  10.     dddStrnSet(string1, 'A'+count , count+1); // Set the string to the selected ascii char.
  11.     printf("String 1 is :- %s\n",string1);
  12.   }
  13. }
  14.