C语言-strstr()函数
描述C 库函数 char *strstr(const char *haystack, const char *needle) 在字符串 haystack 中查找第一次出现字符串 needle 的位置,不包含终止符 ‘\0’。其包含在 <string.h>中。声明下面是 strstr() 函数的声明。char *strstr(const char *haystack, const char *needle)参数haystack -- 要被检索的 C 字符串。needle