Ⅰ strlen()函數是什麼意思
strlen(char *)
作用:檢測字元串實際長度。
如:char s[]="1234567";
int a=strlen(s);//a=7
實際上strlen(char *)檢測的是'