sizeof与strlen区别

2023-12-16 10:16:34

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

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

#include <stdio.h>
#include <string.h>






//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;
}

文章来源:https://blog.csdn.net/weixin_46855342/article/details/135015632
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。