当前位置:首页>维修大全>综合>

c语言str函数入门基础知识

c语言str函数入门基础知识

更新时间:2023-06-24 05:07:17

c语言str函数入门基础知识

C语言函数

  包含文件:string.h

  函数名: strstr

  函数原型:

  1 extern char *strstr(char *str1, const char *str2);

  语法:

  1  * strstr(str1,str2)

  str1: 被查找目标 string expression to search.

  str2: 要查找对象 The string expression to find.

  返回值:若str2是str1的子串,则返回str2在str1的首次出现的地址;如果str2不是str1的子串,则返回NULL。

更多栏目