函数要有高效性和易用性 4.1 函数的基本内容 查看strindex()的实现,该功能和strstr()类似, 都是查找子串的位置 int strindex(char s[], char t[]) { int idx, i, j; for (idx = 0; s[idx] != '\0'; idx+ Read More
posted @ 2025-02-11 23:31 靖意风 Views(10) Comments(0) Diggs(0)