Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anachan01h/lauriewired-halloween-2024

My solution to the LaurieWired 2024 Halloween Programming Challenge: Logic Captcha!
https://github.com/anachan01h/lauriewired-halloween-2024

Last synced: 4 days ago
JSON representation

My solution to the LaurieWired 2024 Halloween Programming Challenge: Logic Captcha!

Awesome Lists containing this project

README

        

# Logic Captcha
My solution to the LaurieWired 2024 Halloween Programming Challenge. It's a captcha that prompts the user to determine if arguments are valid or not. It works because computers can't think. 😅️

The Makefile only works for Linux (or WSL).

## How to compile
On Linux, just run the command:
```
make
```

Or use `gcc` directly:
```
gcc src/main.c src/arguments.c -o bin/logic_captcha
```

The executable `logic_captcha` will be in the folder `bin`.