- 博客(11)
- 资源 (103)
- 收藏
- 关注
原创 gdb调试工具简介
gdb调试工具简介 一、gdb参数:Parameter Description-b Set the line speed of the serial interface for remote debugging-batch Run in batch mode-c
2009-01-11 21:41:00 770
原创 IA32浮点数的3种存储格式
The following table sums up the three types of floating-point formats used on the standard IA-32 platform.Data Type Length Significand Bits Exponent Bits RangeSingle precis
2008-12-06 22:36:00 743
原创 文件比较工具 fc.exe 使用方法
文件比较工具 fc.exe 使用方法 工具: hiew32.exe fc.exe 文件:simple.exe (可以随便找个win32可执行文件做测试)1. 用hiew32工具对simple.exe进行编辑修改, 得到simple.e
2008-05-25 21:37:00 2823
原创 国标码与区位码
国标码与区位码 GB码(国标码):由于区位码是十进制编码,而计算机实际使用的过程中用的是二进制编码,所以在实际使用的过程中,计算机内码使用的是国标码。国标码和区位码一一对应,并可按照以下公式计算:区位码—〉国标码:( ((区码)16+0xA0))+ (位码)16+0xA0
2008-05-25 04:41:00 2593
原创 [c专家编程学习] 深入数组1
[c专家编程学习] 深入数组1 什么时候数组和指针相同: 数组: 1. 声明 (1) extern, 如 extern char a[]; 不能改写成指针的形式 (2) 定义, 如char a[10]; 不能改写成指针的形式 (3) 函数的参数,如func(char a[])
2008-05-25 04:39:00 523
原创 [c专家编程学习] 数组初始化
[c专家编程学习] 数组初始化char vegetables[][9] = { "beet", "barley", "beans"
2008-05-25 04:38:00 456
原创 c语言可变参数
c语言可变参数 #include #include void test(int num, ...) { int i; char temp; va_list ap; va_start(a
2008-05-25 04:37:00 501
原创 字符串处理 ---字符串倒置
字符串处理 ---字符串倒置 char *reverse(char *str) { char *str_begin = str; char *str_end = str; assert(str != NULL); while(*
2008-05-25 04:36:00 683
原创 最大子序列和问题 算法
最大子序列和问题 算法 int max_sub(const int a[], int n) { int tmp_sum, sum, i; tmp_sum = sum = 0; for(i = 0; i {
2008-05-25 04:32:00 543
原创 举例说明hiew工具使用方法
举例说明hiew工具使用方法 工具:hiew32.exe dumpbin.exe 例子文件: simple.exe1. 用dumpbin工具将simple.exe(可以随便找一个win32的可执行文件测试)反汇编得到simple.asm
2008-05-25 04:27:00 5729
原创 Bresenham + 八分法 算法生成圆
#define PutPixel putpixel /* 八分法 */ void CirclePoints(int x, int y, int t, int s, color mycolor) { PutPixel(t+x, s+y, mycolor); PutPixel(t-x, s+y, mycolor); PutPixel(t+x, s-y
2008-02-22 12:44:00 1307
unix操作系统设计.pdf
2008-01-22
floating_point_math.pdf
2007-12-04
ARM嵌入式培训讲稿基于ARM和uClinux的开发.ppt
2007-12-04
Linear Algebra Done Right zip 线性代数应该这样学
2018-04-23
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人