exercise22

1.模拟实现strncpy

#include<stdio.h>
#include<assert.h>

int my_strncpy(char * dst, const char *src, size_t num)
{
	assert(dst);
	assert(src);
	char *ret = dst;
	while (num--)
	{
		*dst = *src;
		dst++, src++;
	}
	return ret;
}
int main()
{
	char src[20] = "1234567";
	char dst[20] = "abcdefg";
	printf("%s", my_strncpy(dst, src, 4));
	system("pause");
	return 0;
}

2.模拟实现strncat  
#include<stdio.h>
#include<assert.h>

char* my_strncat(char*dst, const char*src, size_t num)
{
	assert(dst);
	assert(src);
	char*ret = dst;
	while (*ret)
	{
		ret++;
	}
	while (num--)
	{
		*ret++ = *src++;
	}
	*ret = 0;
	return dst;
}
int main()
{
	char str1[10] = "hello";
	char str2[10] = "world";
	int len = strlen(str1);
	char *ret = my_strncat(str1, str2, len);
	printf("%s\n", ret);

	system("pause");
	return 0;
}

3.模拟实现strncmp

#include<stdio.h>
#include<assert.h>

int my_strncmp(const char*str1, const char*str2, size_t num)
{
	assert(str1);
	assert(str2);
	while (num--)
	{
		if (*str1 == *str2)
		{
			str1++;
			str2++;
		}
		else
		{
			if ((*str1 - *str2) < 0)
			{
				return -1;
			}
			else
				return 1;
		}
	}
	return 0;
}

int main(void)
{
	char *str1 = "abcd";
	char *str2 = "abcdefgh";
	int len = strlen(str2);
	int ret = my_strncmp(str1, str2, len);
	printf("%d\n", ret);
	system("pause");
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值