int strlen(char *s) { char *e; for (e = s; *e != 0: e++) ; return e - s; }. 字串複製 void strcpy(char d[], char s[]) { int i; for (i = 0; s[i] !=
確定! 回上一頁