我没有互联网连接,所以我通过它的 debian 包在我的 linux 系统上手动安装了 gcc。但我无法编译任何 c 代码。这是我的示例 c 代码。
#include <stdio.h>
main()
{
printf("Hellp world");
return 0;
}
它显示的错误:
ocpe@blrkec241972d:~$ gcc -o hello hello.c
hello.c:1:19: error: stdio.h: No such file or directory
hello.c: In function âmainâ:
hello.c:4: warning: incompatible implicit declaration of built-in function âprintfâ
我想我还没有安装编译器的所有依赖项。请建议我正确安装它的描述性方法..