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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了程序清单3.8_typesize.c程序_《C Primer Plus》P52相关的知识,希望对你有一定的参考价值。

// 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的主要内容,如果未能解决你的问题,请参考以下文章

程序清单2.4_nogood.c_程序_《C Primer Plus》P26

程序清单5.3_golf.c程序_《C Primer Plus》P90

程序清单4.3_praise2.c程序_《C Primer Plus》P63

程序清单5.2_shoes2.c程序_《C Primer Plus》P88

程序清单2.2_fathm_ft.c_《C Primer Plus》P24

程序清单2.5_stillbad.c_程序_《C Primer Plus》P27