楼主是要写一个字符串检索程序吧。我写了一个,请楼主看看是否符合要求?
程序代码:
#include<stdio.h>
#include<string.h>
int main()
{
char c[100];
char c1[50];
char c2;
printf("请输入母字符串:");
gets(c);
printf("请输入子字符串:");
gets(c1);
printf("%s\n",strstr(c,c1)); //检索母字符串中是否有包含子字符串,如果有就从包含子字符串的位置开始输出剩余的母串
}