字符串找字符串核心函数

#include <stdio.h>
#include <string.h>
my_hahaha(const char*str,const char*drc)
{
   int i;
   int j=0;
   for (i=0;str[i]!='\0';i++)
   {
     int tem=i;
        int j=0;
   while (str[i++]==drc[j++])
   {
    if(drc[j]=='\0')
    {
     return &str[tem];
    }
   }
    i=tem;
  }
  return NULL;
}
int main()
{
  char *s="guruichun";
  char *d="rui";
  printf("%s\n",my_hahaha(s,d));
  return 0;
}

你可能感兴趣的:(字符串找字符串核心函数)