summaryrefslogtreecommitdiff
path: root/c/README.md
blob: d89410b92bee84d001a8ad0cfa4c72949c2066af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Learn C

This is my personal repository of files for learning the C programming language.

## Building

In order to build files on macOS, run the following command:

```sh
cc hello_world.c -o hello_world
```

Once compiled, they can be executed:

```sh
./hello_world
```