我写了这个程序:
#include<stdio.h>
int main()
{
printf(“Hello World\n”);
return 0;
}
Run Code Online (Sandbox Code Playgroud)
我将其另存为first.c
并尝试编译但收到此问题我什至还安装了 gcc 编译器。
#include<stdio.h>
int main()
{
printf(“Hello World\n”);
return 0;
}
Run Code Online (Sandbox Code Playgroud)
我该如何解决这个问题?