我安装了最新版本的 Ubuntu。我尝试编译并运行简单的 c 程序。我收到错误:
fatal error: stdio: No such file or directory
我安装并更新了几次 gcc 编译器,但仍然出现此错误。有人能帮帮我吗?我把视频记录放在这里,在那里你可以看到我的文件夹和库: http://screencast.com/t/Vi5b7cXnZ
答案1
我看了你的视频,发现你的程序源中存在问题。你出现此错误的原因是你使用了:
#include <stdio>
#include <stdlib>
您应该使用:
#include <stdio.h>
#include <stdlib.h>
..在你的程序中使用这些修正,它现在就可以编译了。