fatal error C1083: Cannot open include file: ' stdio.h': No such file or directory 执行 cl.exe 时出错.

 刚刚安装软件,提示兼容性出问题,然后运行报错,该怎么解决呀~

 

--------------------Configuration: output variable - Win32 Debug--------------------
Compiling...
output variable.cpp
d:\vc++\microsoft visual studio\myprojects\test\output variable.cpp(1) : fatal error C1083: Cannot open include file: ' stdio.h': No such file or directory
执行 cl.exe 时出错.

output variable.exe - 1 error(s), 0 warning(s)
 

第一行改成
#include <stdio.h>

#include "stdio.h" 空格去掉

img