c语言which函数的用法,编写一个函数 char *my_strnchr(char const *str,int ch,int which)

/****************************************

* File Name : my_strnchr.c

* Creat Data : 2015.1.22

* Author : ZY

*****************************************/

/*编写一个函数

char *my_strnchr(char const *str,int ch,int which)

第三个参数指定ch字符在str字符串中第几次出现。

例如,如果第三个参数为1,这个函数的功能就和strchr完全一样。

如果第三个参数为2,这个函数就返回一个指向ch字符在str字符串

中第二次出现的位置的指针。*/

#include

#include

char *my_strnchr(char const *str,int ch,int which)

{

int count = 0;

assert(str);

while(*str)

{

if( ch == *str )

{

count++;

if( count == which )

{

return str;

}

}

*str++;

}

return NULL;

}

int main()

{

char *arr="123452";

int a = '2';

int count = 1;

if( NULL == my_strnchr(arr,a,count) )

{

printf("Can't find the character %c !\n",a);

}

else

{

printf("Find the character %c !\n",a);

printf("%p\n",my_strnchr(arr,a,count));

}

return 0;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值