函數名: strlen
頭檔:<string.h>
函數原型: int strlen(const char *str);
功 能: 計算字串長度
參 數: const char *str 為要計算的字串
傳回值: 傳回字串str的長度
程式例:計算字串str的長度
#include<stdio.h>#include<string.h>intmain(void){char*str=www.dotcpp.com;intlen=strlen(str);printf(%s的長度為%dn,str, len);return0;}
運行結果:
www.dotcpp.com的長度為14