Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mistericy/advent-of-code-c89

Solutions to the https://adventofcode.com/ challenges written in C89.
https://github.com/mistericy/advent-of-code-c89

advent-of-code challenges

Last synced: 23 days ago
JSON representation

Solutions to the https://adventofcode.com/ challenges written in C89.

Awesome Lists containing this project

README

        

# Advent of Code Solutions

Solutions for [Advent Of Code](https://adventofcode.com/) written in ANSI C89 (`-ansi`),
using only the C Standard Library (`stdlib.h`) and Standard I/O (`stdio.h`).

Compile with:

```shell
gcc -ansi -Wall -Wextra -Werror -Wpedantic -O2 -o
```

Run with:

```shell
./output data.txt
```