문자열에서 특정한 문자가 마지막으로 나타나는 위치를 찾고 문자가 있는 위치를 되돌려줍니다.

1720 단어 C 언어

#define _CRT_SECURE_NO_WARNINGS 
#include 
#include 
#include

char *strrchr(char  *str,char ch)
{
    char *ret=NULL;
    assert(str);
    while(*str)
    {
        if (*str==ch)
            ret=str;
        str++;
    }
    return ret;
}

int main()
{
    char *string="hello my college";
    int ret=0;
    char ch=0;
    printf("please enter the ch:
"
); scanf("%c",&ch); ret=(char)strrchr(string,ch); printf("%d
"
,ret); system("pause"); return 0; }

좋은 웹페이지 즐겨찾기