strstr函數:返回主串中子字符串的位置後的所有字符。
#include <stdio.h> const char *my_strstr(const char *str, const char *sub_str) { for(int i = 0; str[i] != '\0'; i++) { int tem = i; //tem保留主串中的起始判斷下標位置 int j = 0; while(str[i++] == sub_str[j++]) { if(sub_str[j] == '\0') { return &str[tem]; } } i = tem; } return NULL; } int main() { char *s = "1233345hello"; char *sub = "345"; printf("%s\n", my_strstr(s, sub)); return 0; }