expected declaration or statement at end of input
- 教育综合
- 2022-06-20 07:56:22
C语言错误 error: expected declaration or statement at end of input
C语言错误 error: expected declaration or statement at end of input,是代码错误造成的,解决方法如下:
1、首先打开Dev C+,如果编写的代码正确,运行时会提示没有错误(Error)和警告(Warning),如下图所示。
2、对于 VS、GCC、Xcode 等,如果代码没有错误,只会显示“生成成功”,不会显示“0个错误,0个警告”,只有代码真的出错了,它们才会显示具体的错误信息。错误(Error)表示程序不正确,不能正常编译、链接或运行,必须要纠正。
3、警告(Warning)表示可能会发生错误(实际上未发生)或者代码不规范,但是程序能够正常运行,有的警告可以忽略,有的要引起注意。错误和警告可能发生在编译、链接、运行的任何时候。puts("C")最后忘记写分号;,就会出现错误。
4、可以看出,C-Free 的错误提示信息比较少,不方便程序员纠错。
5、VC 和 VS 的错误信息类似,只是中英文的差别。
程序最后一行:expected declaration or statement at end of input 求助大神!!!
void readfromfile()//从文件导入 { if((fp=fopen("student.bin","rb"))==NULL) { printf("\n\t\t通讯录文件不存在"); if ((fp=fopen("student.bin","wb"))==NULL) { printf("\n\t\t建立失败"); exit(0); } else { printf("\n\t\t通讯录文件已建立"); printf("\n\t\t按任意键进入主菜单"); getchar(); //return 0; } // 这个方法中 {} 不匹配了expected declaration or statement at end of input
Fastorder函数少一个右括号啊。。。展开全文阅读