关于头文件的试验
我在桌面上新建了一个文本文档“head”,内容就一个自定义函数fun()
{
printf("FUCK!");
}
然后在C源程序里面包含此文件
#include <stdio.h>
#include <head>
main()
{
fun();
}
结果为何说fun()不存在?
2012-06-08 14:58
2012-06-08 15:02
2012-06-08 18:38
2012-06-08 19:02
2012-06-08 22:59
2012-06-09 10:09
首先是<> 和 "" 的区别 这两个查找头文件的时候行为不大一样 具体区别在哪去看书呗
2012-06-09 10:14
2012-06-09 13:05