C 速查手冊
11.3.14 strlen()
string.h 的函數 (function) strlen() 回傳字串 (string) 的長度。
以下程式印出 s 的長度
#include <stdio.h>
#include <string.h>
int main(void)
{
char s[] = "You may go farther and fare worse.";
printf("%d\n", strlen(s));
return 0;
}
/* 《程式語言教學誌》的範例程式
http://kaiching.org/
檔名:cstrlen.c
功能:示範 string.h 中函數 strlen() 的使用
作者:張凱慶 */
編譯後執行,結果如下
$ gcc cstrlen.c |
$ a.out |
34 |
$ |