STRRCHR.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <string.h>
  3. char *strrchr(const char *string, int letter)
  4.  {
  5.    char *ptr = NULL;
  6.    while (*string)
  7.      {
  8.        if (*string == letter)
  9.          ptr = string;
  10.        string++;
  11.      }
  12.    return(ptr);
  13.  }
  14. void main(void)
  15.  {
  16.    char title[64] = "1001 C/C++ Tips!";
  17.    char *ptr;
  18.    if (ptr = strrchr(title, 'C'))
  19.      printf("Rightmost occurrence of C is at offset %dn",
  20.        ptr - title);
  21.    else
  22.      printf("Character not foundn");
  23.  }