strstr函数
头文件:#include<string.h>
#include<stdio.h>
函数说明:strstr(str1,str2) 函数用于判断字符串str2是否是str1的子串。如果是,则该函数返回 str1字符串从 str2第一次出现的位置开始到 str1结尾的字符串;否则,返回NULL。
标签:strstr,函数,str2,str1,C语言,字符串,include,处理函数
来源: https://www.cnblogs.com/xingboy/p/16422037.html