摘要: 1 /* 2 invert4.c -- 使用位操作显示二进制 3 */ 4 5 #include <stdio.h> 6 #include <limits.h> //提供 CHAR_BIT 的定义,CHAR_BIT 表示每字节的位数 7 8 char* itobs(int, char*); 9 vo 阅读全文
posted @ 2018-06-21 10:17 web1013 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 binbit.c -- 使用位操作显示二进制 3 */ 4 5 #include <stdio.h> 6 #include <limits.h> //提供 CHAR_BIT 的定义,CHAR_BIT 表示每字节的位数 7 8 char* itobs(int, char*); 9 voi 阅读全文
posted @ 2018-06-21 10:13 web1013 阅读(127) 评论(0) 推荐(0) 编辑