C语言常用库函数 2020/09/19 | 博客 | 评论(0) | 阅读(75) 目录 1、strstr() 2、void *memset(void *s, int ch, size_t n) 1、strstr() 函数搜索一个字符串在另一个字符串中的第一次出现。找到所搜索的字符串,则该函数返回第一次匹配的字符串的地址;如果未找到所搜索的字符串,则返回NULL。 2、void *memset(void *s, int ch, size_t n) ...