- 博客(3)
- 资源 (9)
- 收藏
- 关注
原创 字符串到十六进制的转换
假设只有一个字节,即最多有8个bit位 那么从“0x21”到0x21,思路如下: uchar *s = "0x21"; uchar c1 = s[2]; uchar c2 = s[3]; //开始处理c1,c2 同理,这里只处理c1了 //如果c1 是0~9 if(48= { c1 -= 48;//减掉48的原因是 c1现在还是ascii编码,0-9对应的值是48-57,减掉48
2013-12-23 16:38:20 242
转载 Rtems调试之DDD安装linux:Redhat Enterprise 5
一、准备 1、 rhel5.5版本,必须安装x开发环境 2、 http://ftp.gnu.org/gnu/ddd/ ,下载最新的ddd-3.3.12.tar.gz 二、安装 1、首先安装motif,否则会报“The Motif include file 'Xm/Xm.h' could not be found.” 虚拟机VMWare7,加载rhel-s
2013-10-29 17:10:11 223
转载 根据身份证判断一个人的年龄,性别
#include #include #include #include #define MAX_SIZE 18 #define uint unsigned int typedef struct Date { int year; int month; int day; int hour; }Date; Date get_time() { struc
2013-04-08 19:54:28 401
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人