strlen 函數用於取得字串長度,它傳回字串中不包含 null 終止符的字元數。用法:strlen(str),其中 str 是要確定其長度的字串。
問題:什麼是 strlen 函數?
回答:strlen 函數是 C 語言中一個用來取得字串長度的函數。
strlen 函數原型如下:
<code class="c">size_t strlen(const char *str);</code>
#參數:
#str##:要確定其長度的字串。它必須以 null 終止。
傳回值:
中不包含 null 終止符在內的字元數。
<code class="c">#include <stdio.h> #include <string.h> int main() { char str[] = "Hello World!"; int len = strlen(str); printf("String length: %d\n", len); // 输出 12 return 0; }</code>注意:##strlen 函數只能計算到第一個null 字元為止。
strlen 函數以字元而不是位元組為單位傳回長度。
以上是c語言中strlen函數的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!