Skip to content

Instantly share code, notes, and snippets.

@Costava
Created March 26, 2021 00:18
Show Gist options
  • Save Costava/b3e15ec0b80c158a7fd9236623789223 to your computer and use it in GitHub Desktop.
Save Costava/b3e15ec0b80c158a7fd9236623789223 to your computer and use it in GitHub Desktop.
// Example compilation:
// gcc fizzbuzz.c -std=c99 -Wall -Wextra
#include <stdio.h>
int main(void) {
for (int i = 1; i <= 100; i += 1) {
if (i % 3 == 0) {
if (i % 5 == 0) {
puts("FizzBuzz");
}
else {
puts("Fizz");
}
}
else if (i % 5 == 0) {
puts("Buzz");
}
else {
printf("%d\n", i);
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment