2011年6月1日

学C应该的方向发展

摘要: 1.c语言-->数据结构+算法-->编译原理-->操作系统-->数据库-->计算机网络-->操作系统(windows/linux)-->内核 2.c语言-->Mc51单片机->AVR-->ARM7-->ARM9-->arm11/DSP 3.如果第一条中玩得操作系统是linux,则又可以linux+arm走嵌入式路线 阅读全文

posted @ 2011-06-01 18:04 sohu2000000 阅读(224) 评论(0) 推荐(1) 编辑

2011年5月5日

Update Phone with latest image

摘要: 我的设计,转载请注明原文地址: http://blog.csdn.net/asiainfolf/archive/2011/05/05/6397479.aspx 阅读全文

posted @ 2011-05-05 17:02 sohu2000000 阅读(166) 评论(1) 推荐(1) 编辑

2011年4月29日

如何用GCC编译出动态库文件(*.so)

摘要: 使用下面的makefileview plaincopy to clipboardprint? 01.CC=gcc 02.CFLAGS=-Wall -ggdb -fPIC 03. 04.all: libfunc 05. 06.libfunc:func.o func1.o 07. $(CC) -shared -Wl,-soname,libfunc.so.1 -o libfunc.so.1.1 $ < 08. ln -sf libfunc.so.1.1 libfunc.so.1 09. ln -sf libfunc.so.1 libfunc.so 10. 11.%.o:%.c 12. $(CC 阅读全文

posted @ 2011-04-29 18:45 sohu2000000 阅读(373) 评论(0) 推荐(1) 编辑

2011年4月26日

变长参数的函数写法

摘要: //***************************************************************************************** // Template No. SWF0012 Template Version No. 04.04.00 // //***************************************************************************************** // FUNCTION NAME : PrintLog() // //------------------------ 阅读全文

posted @ 2011-04-26 10:18 sohu2000000 阅读(302) 评论(0) 推荐(1) 编辑

2011年4月4日

[原创] 指针操作程序答案 — 谭浩强C语言习题答案

摘要: 这两天复习RenMian给我留下谭浩强的C语言教程,温故而知新,夯实基础知识,把谭浩强版C语言的第十章《指针》的书复习后把所有的编程习题做了一遍,贴出来激励自己一下,也希望有用的同学可以参考,时间和水平有限,不足之处,恳请读者批评指正第十章《指针》答案如下inc/testPtr.h#include <string.h>#include <ctype.h>#include <math.h>#include <assert.h>#define SIZE 1024int a2i(char *start, char *end){ int size = 0 阅读全文

posted @ 2011-04-04 13:24 sohu2000000 阅读(496) 评论(0) 推荐(1) 编辑

导航