home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
splint3s.zip
/
splint-3.0.1.6
/
test
/
dkf5kSprintf.c
< prev
next >
Wrap
C/C++ Source or Header
|
2001-07-18
|
143b
|
12 lines
/*dkf5k*/
#include <stdlib.h>
int main()
{
char na[1000];
sprintf(na, "%s", "hello world");
printf("%s\n", &(na[0]));
return 0;
}