C/C++
卢凯文
后端开发工程师,PHP/Java,喜欢开源技术
展开
-
对递归的理解(C语言版本)
# include int main(void){ int factor(int); int a; printf("input a number\n"); scanf("%d",&a); printf("\n"); printf("\n%d! = %d\n",a,factor(a)); return 0;}int factor(i原创 2013-12-11 16:04:27 · 723 阅读 · 0 评论 -
12 Programming Languages in the Modern Web/Mobile World of 2014
If you like a developer in web and mobile industry surely you should have understanding of at least one programming language from this list.The modern world is based on the technology, there is as a转载 2014-03-04 00:13:47 · 983 阅读 · 0 评论 -
C通过指针引用数组元素
#include <stdio.h>int main() { int a[10]; int i; printf("place enter 10 integer number:"); for (i = 0; i < 10; i++) { //scanf("%d", &a[i]); /*使用数组下标法实现*/ scanf("%d",原创 2015-10-11 23:16:40 · 728 阅读 · 0 评论 -
图解aclocal、autoconf、automake、autoheader、configure
转载自:http://www.laruence.com/2008/11/11/606.html1.autoscan (autoconf): 扫描源代码以搜寻普通的可移植性问题,比如检查编译器,库,头文件等,生成文件configure.scan,它是configure.ac的一个雏形。2.aclocal (automake):根据已经安装的宏,用户定义宏和acinclude.m4文件中的转载 2016-11-22 21:59:00 · 1959 阅读 · 0 评论 -
linux 开源规范软件开发入门
在linux上经常使用下面的命令安装软件:./configuremakemake install但是符合这样规范的软件是如何产生的呢? 介绍:linux下autoscan, aclocal, autoconf, automake以及Makefile.am, Configure.in等文件和工具的使用autoscan # 根据路径下生成configure.scan 和 autosc转载 2016-11-22 22:56:35 · 407 阅读 · 0 评论 -
The magic behind configure, make, make install
原文地址:https://robots.thoughtbot.com/the-magic-behind-configure-make-make-install转载 2016-11-22 22:00:42 · 352 阅读 · 0 评论