输入一个字符串再输入个字符串如果第一个字符串包含第二个字符串则输出yes否则输出no
#include<string.h>char *p=strstr(a,b); //a为第一个字符串b为第二个if(!p)printf("no");elseprintf("yes");