摘要:
今天边看书,边打算尝试一下,在ubuntu下写个最小的程序试试。建立一个hello.c的文件。1 #include <stdio.h> 2 int main(void)3 {4 printf("hello!\n");5 printf("hello world from process id is %d\n",getpid());6 return 0;7 }但是在终端用gcc 编译,去说没有头文件,之后才发现是因为没有装c的标准库的原因。安装 g++, sudo apt-get install g++Ubuntu就安裝g++后,stdio.h就 阅读全文
摘要:
迅雷开放了下载引擎,还有源代码,还是值得学习一下的。 相关信息都在http://xldoc.xl7.xunlei.com/ 我下载了demo的代码,还不错。 阅读全文