2023-11-22 20:14:10 +01:00
|
|
|
# sort_c
|
|
|
|
|
2023-11-23 00:18:02 +01:00
|
|
|
I am learning C by implementing as many sorting algorithms as I want
|
|
|
|
|
|
|
|
## How to use
|
|
|
|
|
|
|
|
First you have to clone this repository
|
|
|
|
```bash
|
|
|
|
git clone https://gitea.hopeless-cloud.xyz/AustrianToast/sort_c.git && cd sort_c
|
|
|
|
```
|
|
|
|
Now you should be inside the downloaded repository.<br>
|
|
|
|
To compile this you can execute
|
|
|
|
```bash
|
|
|
|
gcc -o main main.c
|
|
|
|
```
|
|
|
|
Now you can run it like this
|
|
|
|
```bash
|
|
|
|
./main
|
|
|
|
```
|