Skip to content

Instantly share code, notes, and snippets.

View Theby's full-sized avatar

Esteban Gaete Flores Theby

View GitHub Profile
@Theby
Theby / FizzBuzz.c
Last active December 17, 2015 11:59
FizzBuzz
#include <stdio.h>
int main(){
for(int i=0;i<100;i++){
if(i%15==0){
printf("FizzBuzz, ");
}else if(i%3==0){
printf("Fizz, ");
}else if(i%5==0){
printf("Buzz, ");