[已解决] ‘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
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1. 解決方法
下面這樣寫會出錯,因為作為函數的參數時,數組名會降級為指針,使用sizeof得到的結果將會始終為4(一個char指針的大小)。
char* dest_str; char* src_str = "source char string"; strncpy(dest_str, src_str, sizeof(src_str));正確應為:
dest_str= (char*)malloc(strlen(src_str) + 1); // 注意給'/0'留位置 strcpy(dest_str, src_str);或者是
dest_str= strdup(src_str);不過注意strdup不是c庫標準函數,linux中不包括。所以如果需考慮移植性,使用第一種好點。
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
總結
以上是生活随笔為你收集整理的[已解决] ‘strncpy‘ output truncated before terminating nul copying?bytes from a string of the same leng的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C语言标准输入输出缓冲区
- 下一篇: 蓝牙血压计PCBA硬件解决方案