tail head cat sleep
QR code linking to this page

manページ  — STRLEN

名称

strlen – 文字列の長さを測定

内容

ライブラリ

Standard C Library (libc, -lc)

書式

#include <string.h>

size_t
strlen(const char *s);

解説

strlen() 関数は、文字列 s の長さを計算します。

戻り値

strlen() 関数は、終端の ヌル 文字を含まない文字数を返します。

関連項目

string(3)

規格

strlen() 関数は、 ISO/IEC 9899:1990 ("ISO C90") に適合しています。

STRLEN (3) June 4, 1993

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.

As soon as we started programming, we found to our surprise that it wasn't as easy to get programs right as we had thought. Debugging had to be discovered. I can remember the exact instant when I realized that a large part of my life from then on was going to be spent in finding mistakes in my own programs.
— Maurice Wilkes