include <stdio.h>#include <stdlib.h>#include <math.h>int SearchString(char s[], char d[]);main(){char s[81]; //储存一串字符char d[10]; //储存要查找的字符int flag;//输入一串字符printf("Input a string:");gets(s);//输入想要查找的字符printf("Input another string:"...