6、字符串操作函數--strchr()

strchr() 字符查找 void test06() { char str[] = 「hello world」; printf("%s\n", str); //需求:找出所有的’l’並將’l’替換成’*’ char ret = NULL; while((ret=strchr(str,‘l’)) && (ret=’’) ); / while (1) { char ret = strchr(str,
相關文章
相關標籤/搜索