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

C++学习笔记:不用sizeof判断int类型占用几个字节

时间:2014-06-12 10:09:57      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

bubuko.com,布布扣
#include <stdio.h>
#include <string.h>

char *change(int val, int base, char *retbuf)
{
    static const char *str = "0123456789ABCDEF";
    char *p;
    char buf[15];

    p = buf+14;
    *p = 0;

    do { *--p = str[val % base]; } while( val /= base );
    strcpy(retbuf,p);
    return retbuf;
}

int main()
{

     int i = 1;

     char binbuf[32];
     printf("%s  %d\n", change(i, 2, binbuf), i);

     int sum = 0;
     while(0 != i)
     {
          sum++;
          i = i<<1;
          printf("%s  %d\n", change(i, 2, binbuf), i);
     }
    
     printf("sum = %d\n", sum);

}
bubuko.com,布布扣

 

C++学习笔记:不用sizeof判断int类型占用几个字节,布布扣,bubuko.com

C++学习笔记:不用sizeof判断int类型占用几个字节

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/Androider123/p/3782404.html

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