前言

编译 C 言语有: gcc 和 g++,两者都可以编译,本文介绍gcc

安装

macOS安装:

1
brew install gcc

centOS安装

1
yum install -y gcc

验证一下

1
gcc -v

编译

准备一个Hello World的源文件。

1
2
3
4
5
6
7
8
#include <stdio.h>

int main()
{
printf("Hello, World! \n");

return 0;
}

编译

1
2
gcc hello.c -o hello.out
./hello.out

总结

C语言简单又高效,学习起来也很简单,没有太多概念。掌握C语言可以更好的让自己可以控制硬件。