[求助]无法编译的库函数
#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>
应该用尖括号
----------------解决方案--------------------------------------------------------
这个就是高科技,一点错误就不得,谢谢你帮我了哈!要不是你,今天下午我就搞不定,晕迷!!!
----------------解决方案--------------------------------------------------------