PTA 7-29 删除字符串中的子串

PTA 7-29 删除字符串中的子串_第1张图片

#include
#include 

int main()
{

	char S1[81]="\0",S2[81]="\0",t[81]="\0",*p=NULL;
	gets(S1);
	gets(S2);
	int num2=strlen(S2);
	while((p=strstr(S1,S2))!=NULL)
	{
		strcpy(t,p+num2);
		*p='\0';
		strcat(S1,t);	
	}
	printf("%s\n",S1);
	return 0;
}
	

你可能感兴趣的:(PTA基础编程题,c语言)