int snprintf(char *restrict buf, size_t n, const char * restrict format, ...);
函式說明:最多從源串中拷貝n-1個字元到目標串中,然後再在後面加乙個0。所以如果目標串的大小為n 的話,將不會溢位。
函式返回值:若成功則返回欲寫入的字串長度,若出錯則返回負值。
result1(推薦的用法)
複製**
/* sizeof(str)最多拷貝-1個字元,並自動加上乙個0;*/
}str=012345678
result2:(不推薦使用)
複製**
int main()
;snprintf(str, 18, "0123456789012345678");
printf("str=%s/n", str);
return 0;
}root] /root/lindatest
$ ./test
str=01234567890123456
snprintf函式返回值的測試:
複製**
int main()
;char str2[10] =;
int ret1=0,ret2=0;
ret1=snprintf(str1, sizeof(str1), "%s", "abc");
ret2=snprintf(str2, 4, "%s", "aaabbbccc");
printf("aaabbbccc length=%d/n", strlen("aaabbbccc"));
printf("str1=%s,ret1=%d/n", str1, ret1);
printf("str2=%s,ret2=%d/n", str2, ret2);
return 0;
}aaabbbccc length=9
str1=abc,ret1=3
str2=aaa,ret2=9
解釋size:
複製**
sizeof(dst1)=10, src1=aaa, "str :%s"=str :aaa, dst1=str :aaa, ret1=8
sizeof(dst2)=10, src2=aaabbbcccddd, "str :%s"=str :aaabbbcccddd, dst2=str :aaab, ret2=17
補充一下,snprintf的返回值是欲寫入的字串長度,而不是實際寫入的字串度。如:
char test[8];
int ret = snprintf(test,5,"1234567890");
printf("%d|%s/n",ret,test);
執行結果為:
10|1234
snprintf用法解析
int snprintf char s,size t n,const char format,描述 將格式化的輸出寫入大小緩衝區 如果在printf上使用了格式,則將使用與要列印的文字相同的文字組成字串。但是,不是列印,而是將內容以c字串形式儲存在s指向的緩衝區中 以n為 填充的最大緩衝區容量 如果...
snprintf函式用法
int snprintf char restrict buf,size t n,const char restrict format,函式說明 最多從源串中拷貝n 1個字元到目標串中,然後再在後面加乙個0。所以如果目標串的大小為n的話,將不會溢位。函式返回值 若成功則返回欲寫入的字串長度,若出錯則返...
snprintf函式用法
int snprintf char restrict buf,size t n,const char restrict format,函式說明 最多從源串中拷貝n 1個字元到目標串中,然後再在後面加乙個0。所以如果目標串的大小為n的話,將不會溢位。函式返回值 若成功則返回欲寫入的字串長度,若出錯則返...