C语言从零开始

系统环境
cent os7
先安装gcc

步骤
创建文件
touch hello.c
vim hello.c
编写代码

#include <stdio.h>

int main(){
        /*my first c program */

        printf("Hello, World! \n");
        return 0;
}

linux 从头开始学C 改掉编码坏习惯  hello.world(一)_编写代码


编译c程序

gcc hello.c

看到一个a.out文件

执行编译文件./out

运行结果

linux 从头开始学C 改掉编码坏习惯  hello.world(一)_linux_02