Skip to content

Instantly share code, notes, and snippets.

@ninovsnino
Created June 20, 2016 00:14
Show Gist options
  • Save ninovsnino/b6b37c285ee357c9baee9c3d2f4c0bcb to your computer and use it in GitHub Desktop.
Save ninovsnino/b6b37c285ee357c9baee9c3d2f4c0bcb to your computer and use it in GitHub Desktop.
Fizz Buzz in C
#include <stdio.h>
int main( void )
{
int i;
for ( i = 1; i <= 100; i++ )
{
if ( !(i % 3) )
{
printf("Fizz");
}
if ( !(i % 5) )
{
printf("Buzz");
}
if ( (i % 3) && (i % 5) )
{
printf("%d", i );
}
printf("\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment