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

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

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

```