strlen() 函數在 C 語言中用於計算給定字串的長度,不包括 null 終止符:宣告一個 char 陣列或指標來儲存字串。獲取字串。傳遞字串指標作為 strlen() 函數的參數。將傳回的長度儲存在變數中。
strlen() 在C 語言中的用法
strlen() 是C 標準庫中的一個函數,用於計算給定null 終止字串的長度。
語法
<code class="c">size_t strlen(const char *str);</code>
參數
#str
:指向null 終止字串的指針。 傳回值
strlen() 傳回字串的長度,不包含 null 終止符。
用法
要使用strlen() 函數,請依照下列步驟操作:
範例
<code class="c">#include <stdio.h> #include <string.h> int main() { char str[] = "Hello World"; size_t length = strlen(str); printf("字符串 '%s' 的长度为 %d\n", str, length); return 0; }</code>
輸出
<code>字符串 'Hello World' 的长度为 11</code>
注意事項
以上是strlen在c語言中的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!