strlen
文字列の文字数を計算します。
[指定形式]
#include <string.h>
size_t strlen(const char *s);
[引数]
s 長さを求める文字列へのポインタ
[戻り値]
文字列の文字数
[備考]
sが指す文字列の終了を表すヌル文字は、文字列の文字数としては計算に入れません。