strstr.c
来自「c21Examples.rar」· C语言 代码 · 共 28 行
C
28 行
/* Searching with strstr(). */
#include <stdio.h>
#include <string.h>
int main( void )
{
char *loc, buf1[80], buf2[80];
/* Input the strings. */
printf("Enter the string to be searched: ");
gets(buf1);
printf("Enter the target string: ");
gets(buf2);
/* Perform the search. */
loc = strstr(buf1, buf2);
if ( loc == NULL )
printf("No match was found.\n");
else
printf("%s was found at position %d.\n", buf2, loc-buf1);
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?