码迷,mamicode.com
首页 > 其他好文 > 详细

源码测试

时间:2014-06-28 23:13:47      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color      c   一个   

 1 // typesize.c -- 输出类型的大小
 2 #include <stdio.h>
 3 int main(void)
 4 {
 5     //C99为类型大小提供一个%zd说明符
 6 
 7     printf("Type int has a size of %u bytes. \n", sizeof(int));
 8     printf("Type char has a size of %u bytes. \n", sizeof(char));
 9     printf("Type long has a size of %u bytes. \n", sizeof(long));
10     printf("Type double has a size of %u bytes. \n", sizeof(double));
11 
12     return 0;
13 
14 }

 

源码测试,布布扣,bubuko.com

源码测试

标签:style   blog   color      c   一个   

原文地址:http://www.cnblogs.com/stayathust/p/3794248.html

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