#include <stdio.h>
#include <string.h>
#define str_len 32
#ifdef _win32
#define snprintf _snprintf
#endif
/**
* dump string
*/
static void dump_str(const char *title, const char *str, int len)
{
int i;
printf("%s[%d].%p \n", title, len, str);
for (i = 0; i < len; i)
printf("<%c,x>", str[i], (unsigned char)str[i]);
printf("\n");
}
int main(int argc, char **argv)
{
int t;
char str1[str_len], str2[str_len];
strcpy(str1, "123456789");
dump_str("str1", str1, str_len);
t = snprintf(str2, str_len, "%s", str1);
dump_str("str2", str2, str_len);
printf("snprintf() ret.%d \n", t);
t = snprintf(str2, 5, "%s", str1);
dump_str("str2", str2, str_len);
printf("snprintf() ret.%d \n", t);
return (0);
}
/*
test env:
gcc version 3.4.5 20051201 (red hat 3.4.5-2)
result:
str1[32].0xbffb9190
<1,31><2,32><3,33><4,34><5,35><6,36><7,37><8,38><9,39>< ,00><,04><,08>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00><&,26><,04><,08>
str2[32].0xbffb9170
<1,31><2,32><3,33><4,34><5,35><6,36><7,37><8,38><9,39>< ,00><,01>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>
snprintf() ret.9
str2[32].0xbffb9170
<1,31><2,32><3,33><4,34>< ,00><6,36><7,37><8,38><9,39>< ,00><,01>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>
snprintf() ret.9
-------------------------------------------------------------------------
test env:
microsoft windows xp [版本 5.1.2600]
microsoft (r) 32-bit c/c optimizing compiler version 12.00.8168 for 80x86
result:
str1[32].0012ff60
<1,31><2,32><3,33><4,34><5,35><6,36><7,37><8,38><9,39>< ,00><,12>< ,00><,10><,1d><@,40>< ,00>< ,00><,08>< ,00>< ,00><,04>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00>< ,00><,1e><@,40>< ,00>
str2[32].0012ff3c
<1,31><2,32><3,33><4,34><5,35><6,36><7,37><8,38><9,39>< ,00><|,7c><,ff><,ff><,ff><,ff><,06><|,7c><0,30><@,40>< ,00>< ,00>< ,00><7,37>< ,00>< ,09>< ,00>< ,00>< ,00>
snprintf() ret.9
str2[32].0012ff3c
<1,31><2,32><3,33><4,34><5,35><6,36><7,37><8,38><9,39>< ,00><|,7c><,ff><,ff><,ff><,ff><,06><|,7c><0,30><@,40>< ,00>< ,00>< ,00><7,37>< ,00>< ,09>< ,00>< ,00>< ,00>
snprintf() ret.-1
*/
|