在C語言中,要獲取一個字符串的長度,可以使用標準庫函數strlen()
。該函數需要包含頭文件<string.h>
,并接受一個字符串作為參數,返回其長度(不包括字符串末尾的空字符’\0’)。示例如下:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
int len = strlen(str);
printf("Length of the string: %d\n", len);
return 0;
}
在上面的示例中,strlen()
函數返回的字符串長度為13
,因為字符串"Hello, World!"共有13個字符。