C語(yǔ)言中可以使用strlen()函數(shù)來(lái)獲取字符串長(zhǎng)度。該函數(shù)需要一個(gè)字符串作為參數(shù),返回值為該字符串的長(zhǎng)度(不包括字符串末尾的’\0’)。
例如:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, world!";
int len = strlen(str);
printf("The length of the string is %d\n", len);
return 0;
}
輸出結(jié)果為:
The length of the string is 13