C语言strchr的实现

#include
#include
#include
char *mystrchr(char *str, char c)
{
    int i;
    for (i = 0; i

本文标题:C语言strchr的实现
浏览地址:http://ybzwz.com/article/pdsspd.html