溫馨提示×

c++ strlen函數(shù)的用法是什么

c++
小億
145
2024-02-26 13:18:25
欄目: 編程語言

strlen函數(shù)用于獲取字符串的長度,即字符串中字符的個數(shù)(不包括字符串末尾的空字符’\0’)。其用法如下:

#include <cstring>

size_t strlen(const char* str);

其中,參數(shù)str是要獲取長度的字符串,返回值是該字符串中字符的個數(shù)。示例用法如下:

#include <iostream>
#include <cstring>

int main() {
    const char* str = "Hello, World!";
    size_t length = strlen(str);
    
    std::cout << "Length of the string: " << length << std::endl;
    
    return 0;
}

上述代碼會輸出字符串"Hello, World!"的長度,即13。

0