标签:
include <> 这种方式用于标准或系统提供的头文件 到保存系统标准头文件的位置查找头文件
include "" 主要用于用户自己编写的头文件 用这种格式时 C编译器先查找当前目录是否有指定名称的头文件 然后在从标准头文件目录中查找
下列三个文件分别为 main.c print.c print.h
1 #include "print.h" 2 3 int main() 4 { 5 printHello(); 6 return 0; 7 }
1 #include "print.h" 2 3 void printHello() 4 { 5 printf("hello word!\n"); 6 }
1 #include "stdio.h" 2 3 void printHello();
标签:
原文地址:http://www.cnblogs.com/lovywinsy/p/5136801.html