-1

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

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

非常感谢 !

4

3 回答 3

2

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

  • studio.h->stdio.h
  • ...hello")->...hello");
于 2021-01-19T09:37:11.283 回答
0

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

//like this
printf("hello");
于 2021-01-18T16:33:01.973 回答
0
#include <stdio.h>
int main(){
    printf("hello");
    return 0;
}
于 2021-01-18T16:55:08.180 回答