自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (3)
  • 收藏
  • 关注

原创 how to extend C style IO to user defined types

the other day, we had to extend C style IO to use defined types. Let the code says how we made that work#include#include #include #include #include typedef struct tagProcessor{ char name[32

2013-03-26 14:43:51 685

原创 integer addition in terms of bit operators, just for fun

#define SIZE_OF_INT 4#if SIZE_OF_INT == 4int add(unsigned int a, unsigned int b){ //implement integer addition with bit operators, just for fun unsigned int c = 0, result = 0; //the looking

2013-03-26 10:37:27 616

原创 C++ code to verify IEEE 754 double precision floating-point format

As the title says, let the code talk.//feel free to use it in your project with nothing guaranteed//mail to: bruceadi(at)hotmail.com //to verity Double-precision floating-point format, see the l

2013-03-10 18:43:55 1124

原创 a utility for compressing messages to be shared among processes

Data shared among processes could be limited to integers and strings. Other types could be present with these two types.1.     A floating value could be presented in the form of mantissa and expon

2013-03-09 00:54:04 640

原创 a simple function for memory dumping

//feel free to use it in your project with nothing guaranteed//mail to: bruceadi(at)hotmail.com #include //assumption:// f is allowed to write,// memory block [bytes, bytes+ len) is a acc

2013-03-08 14:38:31 840

cppCon 2014 ppt 第三部分

The CppCon 2014 conference videos feature are over 100 sessions of C++ content from many of the world’s best C++ experts, all professionally recorded and edited by Bash Films. We are grateful to both YouTube and Channel 9 for hosting our content.

2015-01-04

cppCon 2014 ppt 第二部分

The CppCon 2014 conference videos feature are over 100 sessions of C++ content from many of the world’s best C++ experts, all professionally recorded and edited by Bash Films. We are grateful to both YouTube and Channel 9 for hosting our content.

2015-01-04

cppCon 2014 ppt 第一部分

The CppCon 2014 conference videos feature are over 100 sessions of C++ content from many of the world’s best C++ experts, all professionally recorded and edited by Bash Films. We are grateful to both YouTube and Channel 9 for hosting our content.

2015-01-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除