C语言 之 字符串函数strncpy、ctrncat、strncmp函数的使用

文章目录

strncpy函数的使用

函数原型:

char * strncpy ( char * destination, const char * source, size_t num);

++strncpystrcpy的区别是,strncpy可以控制需要拷贝的字符数量++

1.能够拷贝num个字符从源字符串到目标空间。

2.如果源字符串的长度小于num,则拷贝完源字符串之后,在目标的后边追加0,直到num个。

例子:

#include<stdio.h>
#include<string.h>
int main()
{
	char str1[] = "hello fallzzzzz";
	char str2[20];
	strncpy(str2, str1, 5);
	str2[5] = '\0'; //拷贝的时候没有把'\0'拷贝过去,所以手动添加一个'\0'
	printf("str2 = %s", str2);
	return 0;
}

输出结果:

strncat函数的使用

函数原型:

char * strncat ( char * destination, const char * source, size_t num);

++strncatstrcat的区别是能控制需要追加的字符串中的字符个数++

1.将source指向的字符串的前num个字符追加到destination指向的字符串末尾,之后再追加⼀个 \0 字符。

2.如果source 指向的字符串的长度小于num的时候,只会将字符串中到 \0 的内容追加到destination指向的字符串末尾。

例子:

#include<stdio.h>
#include<string.h>
int main()
{
	char str1[20] = "hello ";
	char str2[20] = "fallzzzzz";
	strncat(str1, str2, 4);
	printf("str1 = %s", str1);
	return 0;
}

输出结果:

strncmp函数的使用

函数原型:

int strncmp ( const char * str1, const char * str2, size_t num );

++strncmp能够比较两个字符串的前n个字符++

⽐较str1和str2的前num个字符,如果相等就继续往后比较,最多比较num个字母,如果提前发现不⼀样,就提前结束,⼤的字符所在的字符串⼤于另外⼀个。如果num个字符都相等,就是相等返回0。

比较的返回值规则和strcmp的一样,返回值为0则表示相等

例子:

#include<stdio.h>
#include<string.h>
int main()
{
	char str1[] = "fall";
	char str2[] = "falll";
	int tmp = strncmp(str1, str2, 4);
	printf("%d", tmp);
	return 0;
}

输出结果:

相关推荐
爱摸鱼的孔乙己35 分钟前
【数据结构】链表(leetcode)
c语言·数据结构·c++·链表·csdn
Dola_Pan37 分钟前
C语言:数组转换指针的时机
c语言·开发语言·算法
IU宝1 小时前
C/C++内存管理
java·c语言·c++
qq_459730031 小时前
C 语言面向对象
c语言·开发语言
陌小呆^O^2 小时前
Cmakelist.txt之win-c-udp-client
c语言·开发语言·udp
qystca5 小时前
洛谷 B3637 最长上升子序列 C语言 记忆化搜索->‘正序‘dp
c语言·开发语言·算法
网易独家音乐人Mike Zhou10 小时前
【卡尔曼滤波】数据预测Prediction观测器的理论推导及应用 C语言、Python实现(Kalman Filter)
c语言·python·单片机·物联网·算法·嵌入式·iot
搬砖的小码农_Sky13 小时前
C语言:数组
c语言·数据结构
ahadee17 小时前
蓝桥杯每日真题 - 第19天
c语言·vscode·算法·蓝桥杯
Theliars17 小时前
C语言之字符串
c语言·开发语言