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

程序清单3.8_typesize.c程序_《C Primer Plus》P52

时间:2018-06-07 00:38:56      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:C Primer Plus

// typesize.cpp : 定义控制台应用程序的入口点。 // /* typesize.c -- 输出类型的大小 */ /*     时间:2018年06月06日 23:39:52     代码:程序清单3.8_typesize.c程序_《C Primer Plus》P52     目的: 使用 %u, sizeof(数据类型),输出数据类型的字节大小  */ #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { /* c99 为类型大小提供了一个%zd 说明符(输出控制符) */     printf("Type int has a size of %u bytes.\n", sizeof(int));     printf("Type char has a size of %u bytes.\n", sizeof(char));     printf("Type long has a size of %u bytes.\n", sizeof(long));     printf("Type double has a size of %u bytes.\n",     sizeof(double));    //此行连接上行末尾,两行是一个语句,不可在双引号或单词中间断行;     getchar();     return 0; } /*     在VS2010中运行结果: ------------------------------------- Type int has a size of 4 bytes. Type char has a size of 1 bytes. Type long has a size of 4 bytes. Type double has a size of 8 bytes. -------------------------------------     google翻译如下:       类型 int 的大小为4个字节。 类型 char 的大小为1个字节。 类型 long 的大小为4个字节。 类型 double 的大小为8个字节。 ------------------------------------- */


程序清单3.8_typesize.c程序_《C Primer Plus》P52

标签:C Primer Plus

原文地址:http://blog.51cto.com/13555061/2125771

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