C & C++ FAQ
|
C | C++ | 文字列の長さを調べる方法を教えてください。 |
#include <string.h> /* … */ char s[10]; /* … */ n = strlen(s);
標準C | §7.11.6.3 | The strlen function |
標準C99 | §7.21.6.3 | The strcmp function |
標準C++ | §21.4 | Null-terminated sequence utilities |
関数 | strlen関数 |