#include<stdio.h>
int any(char *s1,char *s2);
int main()
{
char s1[20],s2[20];
printf("请输入字符串s1:");
gets(s1);
printf("请输入字符串s2:");
gets(s2);
int pos;
pos=any(s1,s2);
printf("第一次出现的位置是:%d\n",pos);
return 0;
}
int any(char *s1,char *s2)
{
int pos=-1;
int i=0;
char *s;
while(*s1!='\0')
{
s=s2;
while(*s!='\0')
{
if(*s1==*s)
{
pos=i;
return pos;
}
s++;
}
s1++;
i++;
}
return pos;
}