函数返回值是指针

#include<stdio.h>
#include<string.h> 

char *mystrchr(char *s,char c)
{
    while(*s)
    {
        if(*s == c)
        {
            return s;
        }
        s++;
    }
    return NULL;
}

int main()
{
    char str[100] = "hello world";
    //char* s = strchr(str,'a');
    char *s = mystrchr(str,'a');
    printf("s = %s
",s);
    return 0;
}
原文地址:https://www.cnblogs.com/wanghao-boke/p/11007002.html