程序员地瓜哥的小屋

Mac OS上用命令行执行C程序

2021-12-30  本文已影响0人  CodingDGSun

用命令行新建C文件

touch hello.c

编辑C文件

vim hello.c

编写C程序代码

#include <stdio.h>
int main()
{
    printf("Hello World!");
    return 0;
}
80-01.jpg

编译C程序文件

cc -c hello.c
80-02.jpg

生成可执行文件

cc hello.o
80-03.jpg

执行文件

./a.out
80-04.jpg
上一篇下一篇

猜你喜欢

热点阅读