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

  1.                               // Example: 156 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. #include  <stdio.h>
  4. char  string1[64]={"This is the "};
  5. char  string2[]={"concatenated string."};
  6. void  main(void)
  7. {
  8.   printf("\nString1 is :- %s\n",string1);
  9.   printf("\nNow concatenating string1 to string2\n\n");
  10.   dddStrCat(string1,string2); // Concatenate the two strings.
  11.   printf("String 1 is :- %s\n",string1);
  12. }
  13.