Skip to content

FizzBuzz(C)

   

I solved the FizzBuzz with a C. It's interesting to see the differences between different languages when creating FizzBuzz.

#include <stdio.h>
int main(void){
int i;
for(i=0;i<20;i++){
if (i % 3 == 0 && i % 5 == 0) {
printf("FizzBuzz\n");
} else if (i % 3 == 0) {
printf("Fizz\n");
} else if (i % 5 == 0) {
printf("Buzz\n");
} else {
printf("%d\n", i);
}
}
return 0;
}
view raw fizzbuzz.c hosted with ❤ by GitHub