如何在Linux环境下输出一个hello world

step1:打开终端 
step2:敲入“ touch test.c”创建test.c文件 
step3:敲入“vi test.c“打开这个文件进行编写 
step4:敲入”i“切换状态为插入模式编写文件 
step5:敲入代码“

    #include 
    int main()
    {
       printf("hello,world!\n");
       return 0;
    }

step6:按键esc切换状态为命令模式 
step7:敲入命令”:wq“保存并退出 
step8:敲入“gcc test.c -o test“生成可执行文件 
step9:敲入”./test”运行可执行文件

你可能感兴趣的:(如何在Linux环境下输出一个hello world)