2017-7-28 2-5 编写函数any(s1,s2), 将字符串s2中任一字符在字符串s1中第一次出现的位置作为返回结果,如果s1中不包含s2中的字符,则返回-1

#include 
#include 

int any( char s1[], char s2[] )
{
    int i=0,j=0;
    for(i=0; s1[i]!='\0'; i++)  //  ' \0 '  字符串结束符
    {
	for(j=0; s2[j] != '\0'&& j

 

你可能感兴趣的:(C语言)