strncat使用案例
以下是一个使用strncat函数的案例:
#include <stdio.h>
#include <string.h>
int main() {
char str1[20] = "Hello ";
char str2[20] = "World!";
strncat(str1, str2, 6);
printf("Concatenated string: %s\n", str1);
return 0;
}
输出:
Concatenated string: Hello World!
在这个例子中,我们将两个字符串连接起来,但只拼接了str2的前6个字符。strncat函数的第三个参数指定了要拼接的字符数。如果第三个参数大于str2的长度,则str2的所有字符都将被拼接到str1中。
原文地址: https://www.cveoy.top/t/topic/bEEG 著作权归作者所有。请勿转载和采集!