home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Virtual Reality Madness
/
VRMAD96_ONE.ISO
/
virtek
/
libex
/
libex156.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-24
|
433b
|
13 lines
// Example: 156 from Library Reference
#include "..\3D-Ware\dddware.h"
#include <stdio.h>
char string1[64]={"This is the "};
char string2[]={"concatenated string."};
void main(void)
{
printf("\nString1 is :- %s\n",string1);
printf("\nNow concatenating string1 to string2\n\n");
dddStrCat(string1,string2); // Concatenate the two strings.
printf("String 1 is :- %s\n",string1);
}