求答案 c语言编程:编写函数int StrCount(char* str1,char* str2)。

编写函数intStrCount(char*str1,char*str2)。Str1和str2为两个输入的字符串。函数统计str2在str1中出现的次数,返回该数值。要求:... 编写函数int StrCount(char* str1,char* str2)。Str1和str2为两个输入的字符串。函数统计str2在str1中出现的次数,返回该数值。要求:在主函数main中初始化str1和str2,调用函数StrCount(str1,str2)后输出结果。如输入str1为"howareyouareGGGare",str2为"are",那么调用函数StrCount后函数返回3 展开
 我来答
ztao91
2014-01-03 · TA获得超过152个赞
知道答主
回答量:6
采纳率:0%
帮助的人:14.3万
展开全部
#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or add your own getch, system("pause") or input loop */int StrCount(char* str1,char* str2){ int i,j; int count=0; i=j=0; while(str1[i]!='\0') { while(str1[i]!='\0'&&str2[j]!='\0') { if(str1[i]==str2[j]) { i++; j++; } else { i=i-j+1; j=0; } } if(str2[j]=='\0') { count++; j=0; } } return count;} int main(int argc, char *argv[]) { int count; char str1[]="howareyouareGGGare"; char str2[]="are"; count=StrCount(str1,str2); printf("%d",count); return 0;}
zomiya520
2014-01-03 · 超过14用户采纳过TA的回答
知道答主
回答量:31
采纳率:0%
帮助的人:31.5万
展开全部
如果输入str1为"aaaaa",str2为"aaa",那么调用函数StrCount后函数的返回值应该为多少?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式