strstr函数原型
时间: 2023-12-16 19:28:34 浏览: 107
C++ VC strstr函数的仿真
strstr函数原型是:
```c
const char *strstr(const char *str1, const char *str2);
```
该函数用于在字符串str1中查找是否包含字符串str2,并返回第一次出现的位置。如果找到了str2,则返回指向该位置的指针;如果未找到,则返回NULL。
示例代码如下:
```c
#include <stdio.h>
#include <string.h>
int main() {
const char *str1 = "Hello, world!";
const char *str2 = "world";
const char *result = strstr(str1, str2);
if (result != NULL) {
printf("Found at position: %ld\n", result - str1);
} else {
printf("Not found\n");
}
return 0;
}
```
输出结果为:
```
Found at position: 7
```
阅读全文