C語言中可以使用strlen()函數來獲取字符串長度。該函數需要一個字符串作為參數,返回值為該字符串的長度(不包括字符串末尾的’\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;
}
輸出結果為:
The length of the string is 13