home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Virtual Reality Madness
/
VRMAD96_ONE.ISO
/
virtek
/
libex
/
libex163.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-24
|
388b
|
14 lines
// Example: 163 from Library Reference
#include "..\3D-Ware\dddware.h"
#include <stdio.h>
char string1[32];
short count;
void main(void)
{
for (count=0; count<26; count++)
{
dddStrnSet(string1, 'A'+count , count+1); // Set the string to the selected ascii char.
printf("String 1 is :- %s\n",string1);
}
}