https://github.com/quantgeekdev/fizzbuzz-c
FizzBuzz implementation in C
https://github.com/quantgeekdev/fizzbuzz-c
Last synced: 12 months ago
JSON representation
FizzBuzz implementation in C
- Host: GitHub
- URL: https://github.com/quantgeekdev/fizzbuzz-c
- Owner: QuantGeekDev
- Created: 2024-01-01T18:47:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-01T22:10:19.000Z (about 2 years ago)
- Last Synced: 2025-03-24T04:35:52.380Z (about 1 year ago)
- Language: C
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FizzBuzz in C
## By Alex Andrushevich
Implementation of the classic coding problem FizzBuzz in C
For this quick demo I replaced the GCC with Zig compiler
To compile it, use:
```console
foo@bar:~$ $ zig cc src/fizzbuzz.c src/main.c -o fizzbuzz.exe -target x86_64-windows-gnu
```
Alternatively you can use the GCC command
```console
foo@bar:~$ gcc fizzbuzz.c -o
```