我在Ubuntu 16.04 LTS上使用Code:Blocks IDE。我创建了一个控制台应用程序项目,并使用GNU编译器来构建和运行这个简单的Hello World!
消息:
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
但是,点击Build and Run
后,它会给我这条消息
File | Message .................|.......................... obj/Debug/main.o | No such file or directory
这可能是一个错误,还是我只是错过了一些插件?欢迎任何帮助。