Gitpod 到 运行 一个 C hello world 程序

Gitpod to run a C hello world program

我是 C 语言的新手,但我使用 Gitpod 其他语言。我想知道如何从 Gitpod 界面一步步 运行 这个简单的“hello world” main.c 程序?

#include <studio.h>
void main(){
    printf("hello")
}

非常感谢!

在 printf("hello") 之后 你应该放 ;

//like this
printf("hello");
#include <stdio.h>
int main(){
    printf("hello");
    return 0;
}

修复错误后,您可以使用 gcc main.c 和 运行 二进制 a.out 编译代码。 已经提到的错误:

  • studio.h -> stdio.h
  • ...hello") -> ...hello");