Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/mistericy/advent-of-code-c89
- Owner: MisterIcy
- Created: 2024-06-24T11:36:10.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-24T12:05:00.000Z (7 months ago)
- Last Synced: 2024-06-25T13:19:45.680Z (7 months ago)
- Topics: advent-of-code, challenges
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```