test sizeof


点击(此处)折叠或打开

  1. #include <stdio.h>
  2. float mypower(int);

  3. int main(void){
  4.     char c;
  5.     short s;
  6.     int i;
  7.     long l;
  8.     unsigned u;
  9.     float f;
  10.     double d;
  11.     long double ld;
  12.     int a[20];
  13.     int *ptr = a;

  14.     printf("size of char is %d\t"
  15.         "the kinds of char is %0.f\n"
  16.         "size of short is %d\t"
  17.         "the kinds of short is %0.f\n"
  18.         "size of int is %d\t"
  19.         "the kinds of int is %0.f\n"
  20.         "size of long is %d\t"
  21.         "the kinds of long is %0.f\n"
  22.         "size of unsigned is %d\t"
  23.         "the kinds of unsigned is %0.f\n"
  24.         "size of float is %d\t"
  25.         "the kinds of float is %0.f\n"
  26.         "size of double is %d\t"
  27.         "the kinds of double is %0.f\n"
  28.         "size of long double is %d\t"
  29.         "the kinds of long double is %0.f\n"
  30.         "size of array is %d\t"
  31.         "the kinds of array is %0.f\n"
  32.         "size of pointer is %d\t"
  33.         "the kinds of pointer is %0.f\n",
  34.         sizeof(c), mypower(sizeof(c)),
  35.         sizeof(s), mypower(sizeof(s)),
  36.         sizeof(i), mypower(sizeof(i)),
  37.         sizeof(l), mypower(sizeof(l)),
  38.         sizeof(u), mypower(sizeof(u)),
  39.         sizeof(f), mypower(sizeof(f)),
  40.         sizeof(d), mypower(sizeof(d)),
  41.         sizeof(ld), mypower(sizeof(ld)),
  42.         sizeof(a), mypower(sizeof(a)),
  43.         sizeof(ptr)),mypower(sizeof(ptr));

  44.     return 0;
  45.     
  46. }

  47. float mypower(int x){
  48.     float base = 1.0;
  49.     for (int i = 1; i <= (8 * x); i++)
  50.     {
  51.         base = 2 * base;
  52.     }

  53.     return base;
  54. }

<script type=text/javascript charset=utf-8 src="http://static.bshare.cn/b/buttonLite.js#style=-1&uuid=&pophcol=3&lang=zh"></script> <script type=text/javascript charset=utf-8 src="http://static.bshare.cn/b/bshareC0.js"></script>
阅读(3) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
评论热议
在C语言中,sizeof是一个操作符,用来获取一个数据类型或变量的字节大小。它返回的结果是一个size_t类型的值,表示字节数。引用提到了一些关于C语言中sizeof的特殊情况,针对32位机而言,下面是几个例子: 1. 如果我们定义了一个结构体struct test,其中包含了8个int类型的成员变量a、b、c、d、e、f、g和h。那么使用sizeof(test)获取到的结果是32,因为每个int类型占据4个字节,所以8个int类型的成员变量总计占据32个字节。 2. 如果我们创建了一个test类型的引用r,指向一个test类型的对象。那么使用sizeof(r)获取到的结果也是32,因为引用r所指向的对象是test类型,而sizeof一个引用得到的结果是sizeof一个被引用的对象的大小,即sizeof(test)的结果。 3. 如果我们尝试使用sizeof获取一个数组的大小,比如数组arrayA,那么编译会出错,因为在C语言中,sizeof不能获取数组的大小,而是返回数组元素类型的大小。 综上所述,在C语言中,sizeof是用来获取数据类型或变量的字节大小的操作符。它返回的结果是一个size_t类型的值,表示字节数。在一些特殊情况下,sizeof的行为可能会有所不同,比如结构体和引用的处理。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [C++ sizeof 实例解析](https://download.csdn.net/download/weixin_38569515/12814125)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [C/C++ | sizeof()函数](https://blog.csdn.net/weixin_47187147/article/details/123470258)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [C/C++中 sizeof 详解](https://blog.csdn.net/HellowWorld001/article/details/119303406)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值