摘要: #define NULL 0#include <stdio.h>char *find_char1 (char const *sourse,char const *chars){ char *sou; for (; *chars != '\0'; chars++) { for (sou = sourse; *sou != '\0'; sou++) { if (*sou == *chars) { return sou; } } } ... 阅读全文
posted @ 2013-03-18 20:42 frechei 阅读(486) 评论(0) 推荐(0)