cmc/learn
My personal learning area.
clone: git clone https://gitbay.org/cmc/learn.git
1# Learn C
2
3This is my personal repository of files for learning the C programming language.
4
5## Building
6
7In order to build files on macOS, run the following command:
8
9```sh
10cc hello_world.c -o hello_world
11```
12
13Once compiled, they can be executed:
14
15```sh
16./hello_world
17```