当前位置: 代码迷 >> C语言 >> [求助]无法编译的库函数
  详细解决方案

[求助]无法编译的库函数

热度:107   发布时间:2007-03-14 17:35:06.0
[求助]无法编译的库函数
#include(stdio.h)
#include(conio.h)
main()
{ printf("hello! this is my test program! press any key to continue!");
getch();
}
这个程序没办法编译!!
编译后显示错误为
Error:bad file name format in include dirctive
main()
{ printf("hello! this is my test program! press any key to continue!");
getch();
}
把最前面的两句去掉了就OK了,是不是库函数出现问题,但是我的文件夹里面又找的见INCLUDE。STDIO和CONIO也都好好的!求高手帮忙查查是不是哪里出了问题!!!!

搜索更多相关的解决方案: 编译  函数  编译  函数  

----------------解决方案--------------------------------------------------------

#include<stdio.h>

应该用尖括号


----------------解决方案--------------------------------------------------------
这个就是高科技,一点错误就不得,谢谢你帮我了哈!要不是你,今天下午我就搞不定,晕迷!!!

----------------解决方案--------------------------------------------------------
  相关解决方案