C语言程序设计 - 1.3.4 命令编译和执行
2019-08-02 本文已影响0人
廖马儿
命令编译和执行第一个C程序:
编写c语言程序:
vi hello.c
#include "stdio.h"
int main(int argc, char const *argv[]){
printf("Hello\n");
return 0;
}
编译:
gcc hello.c
得到a.out
编译后的文件。
执行编译后的文件:
./a.out