sizeof与strlen区别

sizeof()为操作符,不是函数,可用于计算变量,数据类型,或对象占用的空间(字节数);

strlen()为一个函数,且仅用于计算字符串长度;

#include 
#include 






//compare sizeof and strlen 
int main() 
{    
    char str[] = "london";
    int arr[] = {10,20};
    int sizeof_london = sizeof(str), strlen_london = strlen(str);    

    printf("sizeof_london=%d\n", sizeof_london); //计算所占字节的大小                    
    printf("strlen_london=%d", strlen_london);   //计算字符串字节数 
 
    return 0;
}

sizeof与strlen区别_第1张图片

你可能感兴趣的:(算法)