C program to find length of a string without using strlen function, recursion. ... int string_length(char s[]) { int c = 0;. while (s[c] != '\0') c++;.
確定! 回上一頁