我们来学习下简单的自定义函数。
	
	下面是个最简单的自定义函数,打印一个空行
void newline(void){
print ("/n");
}
	
	然后我们在主函数里面调用它,看下效果,首先新建一个文件,two.c:
	[root@ www ~]# vi two.c
	#include <stdio.h>
	void newline(void){
	printf("\n");
	}
	int main(void){
	printf("first line.\n");
	newline();
	printf("second line.\n");
	return 0;
	}
	~
	"two.c" [New] 12L, 152C written
	[root@ www ~]# gcc two -o two.c
	gcc: two:没有那个文件或目录
	gcc: 没有输入文件
	[root@ www ~]# gcc two.c -o two
	[root@ www ~]# ./two
	first line.
	second line.
	[root@ www ~]#

