使用strstr()函數在一個字符串中查找另外一個字符串

#include <stdio.h>
#include <string.h>
int main(void){
  char *loc, buf1[80], buf2[80];
  
  //輸入字符串
  printf("Enter the string to be searched: ");
  gets(buf1);
  printf("Enter the target string: ");
  gets(buf2);
  
  //執行查找
  loc = strstr(buf1, buf2);
  if(loc == NULL){
    printf("No match was found.\n");
  } else {
    printf("%s was found at positioin %d.\n", buf2, loc-buf1);
  }
  return 0;
}
相關文章
相關標籤/搜索