了解 引入头文件的几种方式

 #include <stdio.h>			  //从系统目录查找头文件

 #include "test.h"			  //从当前目录查找头文件

 #include "c:\users\test.h"              //查找绝对路径下的头文件

 #include "../test.h"                    //从上一级目录查找头文件

 #include "/test.h"	                  //从根目录查找头文件

 #include "./test.h"	                  //从当前目录查找头文件


秋风 2016-08-13