码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-10-18 23:06:53      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:c

//各个数据类型的大小
#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语言 各个类型占用的大小

标签:c

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!