The C in C++(Chapter 3 of Thinking in C++)

The C in C++(Chapter 3 of Thinking in C++)The C in C++(Chapter 3 of Thinking in C++)code1#include<iostream>

2#include<cstdlib>

3usingnamespacestd;

4

5

6voidPrintBinary(constunsignedcharval)

7{

8for(inti=7; i>=0; i--)

9{

10if(val&(1<<i))

11{

12cout<<"1";

13}

14else

15{

16cout<<"0";

17}

18}

19}

20

21intmain()

22{

23doubled=atof("12.3");

24unsignedcharp=reinterpret_cast<unsignedchar>(&d);

25for(inti=sizeof(double); i>0; i-=2)

26{

27PrintBinary(p[i-1]);

28PrintBinary(p[i]);

29}

30

31cin.get();

32}

原文链接: https://www.cnblogs.com/zhtf2014/archive/2010/10/27/1862947.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/16652

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月7日 下午5:01
下一篇 2023年2月7日 下午5:01

相关推荐