2015年4月28日
摘要:
声明来自http://blog.csdn.net/lianyq1986/article/details/6651447step:1.配置crosstool[root@localhost crosstool-ng-1.9.3]# ./configure --prefix=/opt/powerpc/...
阅读全文
posted @ 2015-04-28 21:24
LeoSanford
阅读(2231)
推荐(0)
摘要:
来自http://www.linuxsir.org/bbs/thread351616.html?pageon=1发表于 2010-07-23 21:20:03|只看该作者|倒序浏览没问题!如:root [ /usr/src/libxml2-2.7.6 ]# make installMaking in...
阅读全文
posted @ 2015-04-28 19:00
LeoSanford
阅读(9472)
推荐(0)
2015年4月27日
摘要:
声明:本文来与http://biancheng.dnbcw.info/linux/269048.html前段时间用了几个编译器,版本太多,感觉用起来不是很爽。参考了Tekkaman Ninja大侠的文章,决定自己动手制作交叉编译器。参考资料1)《用crosstool-ng建立linux交叉编译环境》...
阅读全文
posted @ 2015-04-27 15:36
LeoSanford
阅读(777)
推荐(0)
2015年4月18日
摘要:
声明:本文来与http://wenku.baidu.com/link?url=_YyQz85cyMB0pGLQcKrgZ-sdkyVbmwXxTfDABcTrxc4XPYlhy-apdvAUKIje943Eyjb9c_CiFZ7_dcdjRgnHuVd4KzLfgUjWEwdnrR5i-RK本文所介...
阅读全文
posted @ 2015-04-18 22:34
LeoSanford
阅读(387)
推荐(0)
2015年4月9日
摘要:
声明:来自http://www.baidu.com/p/ym021400?from=zhidao网友的回答网关是一种充当转换重任的计算机系统或设备。在使用不同的通信协议、数据格式或语言,甚至体系结构完全不同的两种系统之间,网关是一个翻译器。与网桥只是简单地传达信息不同,网关对收到的信息要重新打包,以...
阅读全文
posted @ 2015-04-09 17:16
LeoSanford
阅读(512)
推荐(0)
2015年4月8日
摘要:
1.主机IP地址IP地址:internet上的每一台计算机都被赋予了唯一的32位Internet地址,简称ip地址。(1)IP地址的组成IP地址由两部分组成,如图1网络地址(net-ID)主机地址(host-ID) 32位net-ID标示该计算机属于哪个网络;host-ID标示该网络上的计算机。I...
阅读全文
posted @ 2015-04-08 20:03
LeoSanford
阅读(386)
推荐(0)
2015年4月6日
摘要:
#include <stdio.h> void bubble_sort(long [], long); int main() { long array[100], n, c, d, swap; printf("Enter number of elements\n"); scanf("%ld", &n
阅读全文
posted @ 2015-04-06 15:02
LeoSanford
阅读(131)
推荐(0)
摘要:
1.快速排序 参考资料:http://developer.51cto.com/art/201403/430986.htm(下面的代码出于此处,作者写的很详细。) 及各种贴吧、文库......
阅读全文
posted @ 2015-04-06 14:45
LeoSanford
阅读(206)
推荐(0)
2015年4月3日
摘要:
#include #include #include int get_word(char *buf,int buf_size,FILE *fp) { int len; int ch; while ((ch = getc(fp)) != EO...
阅读全文
posted @ 2015-04-03 22:18
LeoSanford
阅读(924)
推荐(0)
2015年4月2日
摘要:
#include <stdio.h>int main(){ int i; char tens,sin; printf("enter a two-digit number:\n"); scanf("%d",&i); if(20<=i&&i<100) { tens=i/10; sin =i%10; sw
阅读全文
posted @ 2015-04-02 18:00
LeoSanford
阅读(323)
推荐(0)