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

  1.                                            // Example: 157 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. #include <stdio.h>
  4.  
  5. char far s[]={"ABCDEFGHIJKLMNOPQRSTUVWXYZThis is the real string."};
  6. char * temp_ptr;
  7.  
  8. void main(void)
  9. {
  10.   temp_ptr = dddStrChr(s,'Z');
  11.   printf("\nThe Original string is : \"%s\"\n",s);
  12.   printf("\nThe String after the \"Z\" is : \"%s\"\n",temp_ptr +1 );
  13.  
  14. }
  15.