[已解决] ‘strncpy‘ output truncated before terminating nul copying?bytes from a string of the same leng
生活随笔
收集整理的這篇文章主要介紹了
[已解决] ‘strncpy‘ output truncated before terminating nul copying?bytes from a string of the same leng
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1. 解決方法
下面這樣寫會(huì)出錯(cuò),因?yàn)樽鳛楹瘮?shù)的參數(shù)時(shí),數(shù)組名會(huì)降級(jí)為指針,使用sizeof得到的結(jié)果將會(huì)始終為4(一個(gè)char指針的大小)。
char* dest_str; char* src_str = "source char string"; strncpy(dest_str, src_str, sizeof(src_str));正確應(yīng)為:
dest_str= (char*)malloc(strlen(src_str) + 1); // 注意給'/0'留位置 strcpy(dest_str, src_str);或者是
dest_str= strdup(src_str);不過注意strdup不是c庫(kù)標(biāo)準(zhǔn)函數(shù),linux中不包括。所以如果需考慮移植性,使用第一種好點(diǎn)。
2. 參考資料
https://www.huwoo.net/2019/post-3168.html
https://stackoverflow.com/questions/13553113/char-array-split-ip-with-strtok
https://stackoverflow.com/questions/27587090/how-to-get-rid-of-call-is-the-same-expression-as-the-source-warning-in-c
https://www.jb51.net/article/71501.htm
總結(jié)
以上是生活随笔為你收集整理的[已解决] ‘strncpy‘ output truncated before terminating nul copying?bytes from a string of the same leng的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C语言标准输入输出缓冲区
- 下一篇: 蓝牙血压计PCBA硬件解决方案