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

  1.                       // Example: 164 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. #include  <stdio.h>
  4. char  string1[]={"A TEST sTrIng. 0123AbCd."};
  5. void  main(void)
  6. {
  7.   printf("\nString 1 is :- %s\n",string1);
  8.   printf("\nNow making the string all upper case.\n\n");
  9.   dddStrUpr(string1); // Turn all the ascii chars to upper case.
  10.   printf("String 1 is :- %s\n",string1);
  11. }
  12.