详解c语言中的 strcpy和strncpy字符串函数使用

时间:2021-09-17 08:31:17

strcpy 和strcnpy函数——字符串复制函数。

1.strcpy函数

函数原型:char *strcpy(char *dst,char const *src)            必须保证dst字符的空间足以保存src字符,否则多余的字符仍然被复制,覆盖原先存储在数组后面的内存空间的数值,strcpy无法判断这个问题因为他无法判断字符数组的长度。

?
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include<string.h>
int main()
{
 
 char message[5];
  int a=10;
 strcpy(message,"Adiffent");
 printf("%s %d",message,a);
 return 0;
}

输出结果是Adiffent 10;因此使用这个函数前要确保目标参数足以容纳源字符串

2.strncpy函数:长度受限字符串函数

函数原型:char *strncpy(char *dst,char const *src,size_t len )       要确保函数复制后的字符串以NUL字节结尾,即1<len<sizeof(*dst)

?
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include<string.h>
int main()
{
 char message[5];
  int a=10;
 strncpy(message,"Adiffent",2);//长度参数的值应该限制在(1,5)
 printf("%s %d",message,a); //不包含1和5
 return 0;
}

总结

以上所述是小编给大家介绍的c语言中的 strcpy和strncpy字符串函数使用,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

原文链接:https://www.cnblogs.com/chunmu/p/9844023.html