home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Virtual Reality Madness
/
VRMAD96_ONE.ISO
/
virtek
/
libex
/
libex157.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-24
|
407b
|
15 lines
// Example: 157 from Library Reference
#include "..\3D-Ware\dddware.h"
#include <stdio.h>
char far s[]={"ABCDEFGHIJKLMNOPQRSTUVWXYZThis is the real string."};
char * temp_ptr;
void main(void)
{
temp_ptr = dddStrChr(s,'Z');
printf("\nThe Original string is : \"%s\"\n",s);
printf("\nThe String after the \"Z\" is : \"%s\"\n",temp_ptr +1 );
}