c语言中字符串的函数strstr()和strchr()的操作一

//函数返回是指向第一次找到元素的位置,获取其以后的字符串。

#include

#include

int main()
{
char  *s1="tongzhimenhao";
char *s2="men";
char *p;
p=strstr(s1,s2);
if (p!=NULL)
{
printf("%s\n",p);
}
else
{
printf("Not Found\n");
}
  p=strchr(s1,'m');
  if (p!=NULL)
  {
 printf("%s\n",p);
  }
  else
  {
 printf("not found\n");
  }

}

//最终的结果是如下

menhao

menhao

你可能感兴趣的:(linux,c)