首页 > 编程语言 > 详细

C语言 各个类型占用的大小

时间:2017-10-18 23:00:20      阅读:224      评论:0      收藏:0      [点我收藏+]
//各个数据类型的大小
#include <stdio.h>
int main(int argc, const char * argv[]) {
    char k;
    printf("char 占用字节:%d\n",sizeof(k));
    
    int i=0;
    printf("int 占用字节:%d\n",sizeof(i));
    
    short j;
    printf("short 占用字节:%d\n",sizeof(j));
    
    float l;
    printf("float 占用字节:%d\n",sizeof(l));
    
    double m;
    printf("double 占用字节:%d\n",sizeof(m));
    
    
}
//char 占用字节:1
//int 占用字节:4
//short 占用字节:2
//float 占用字节:4
//double 占用字节:8

C语言 各个类型占用的大小

原文:http://13413367.blog.51cto.com/13403367/1973900

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!