関数名: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 の長さは %d ですn,str , len);return0;}
実行結果:
www.dotcpp.com の長さは 14 です。