常见C调试错误

1)fatal error C1004: unexpected end of file found
Error executing cl.exe.

这种问题经常遇到,主要是{ }没有配对引起

2)在用到swith……case的时候出现以下问题

error C2046: illegal case

解决:swith后面加上{ }

3)return EXIT_SUCCESS;和return EXIT_FAILURE;是包含在##include<stdlib.h>里面的

不加的话报错为rror C2065: 'EXIT_FAILURE' : undeclared identifier

你可能感兴趣的:(c,File)