统计一个给定字符串中指定的字符出现的次数

统计一个给定字符串中指定的字符出现的次数

#include
#include
#include
int main()
{
	char source[80],dest[5];
	int len_s,len_d,*count;
	int temp,i,j;
	while(1)
	{
		gets(dest);
		gets(source);	
		if (strcmp(dest,"#")==0)
			break;
		else
		{
			len_s=strlen(source);
			len_d=strlen(dest);
			count=(int *)malloc(sizeof(int)*len_d);
			
			for(i=0;i


你可能感兴趣的:(数据结构与算法)