求指定字符在字符串中第一次出现的位置并输出

求指定字符在字符串中第一次出现的位置并输出如:“ThisIsacProgram”,指定字符为“a”时则输出:Resultis:8#include<conio.h>#inc... 求指定字符在字符串中第一次出现的位置并输出
如:“This Is a c Program”,指定字符为“a”时
则输出:Result is: 8
#include <conio.h>
#include <stdio.h>
void nono(int posi);
int fun(char str1[],char ch)
{
int i,pos;
/***********begin***********/

/************end************/
}
main()
{ char str1[80]="This Is a c Program",ch='a';
int posi;
printf("String is: %s\n",str1);
printf("char is: %c\n",ch);
posi=fun(str1,ch);
printf("Result is: %d\n",posi);
nono(posi);
}

void nono(int posi)
{FILE *f;
f=fopen("out1.dat","w");
fprintf(f,"The sum is :%d\n",posi);
fclose(f);
}
展开
 我来答
fanz_no1
推荐于2016-09-26 · TA获得超过196个赞
知道答主
回答量:157
采纳率:0%
帮助的人:209万
展开全部
#include <conio.h>
#include <stdio.h>
void nono(int posi);
int fun(char str1[],char ch)
{
int i,pos;
/***********begin***********/
for(i=0;i<strlen(str1);i++)
{
if(str1[i] ==ch){
pos=i;
return pos;
}
}
return pos;

/************end************/
}
main()
{ char str1[80]="This Is a c Program",ch='a';
int posi;
printf("String is: %s\n",str1);
printf("char is: %c\n",ch);
posi=fun(str1,ch);
printf("Result is: %d\n",posi);
nono(posi);
}

void nono(int posi)
{FILE *f;
f=fopen("out1.dat","w");
fprintf(f,"The sum is :%d\n",posi);
fclose(f);
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式