We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb40ead commit c473ac5Copy full SHA for c473ac5
solutions/c/shortest-fizz-buzz.c
@@ -1 +1 @@
1
-main(i){for(;i<101;printf("%i\r%s%s\n",i++,i%3?"":"Fizz",i%5?"":"Buzz"));}
+main(i){while(printf("%i\r%s%s\n",i++,i%3?"":"Fizz",i%5?"":"Buzz")-9);}
0 commit comments