Skip to content

Commit c473ac5

Browse files
-3 characters (blakeembrey#192)
1 parent fb40ead commit c473ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solutions/c/shortest-fizz-buzz.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
main(i){for(;i<101;printf("%i\r%s%s\n",i++,i%3?"":"Fizz",i%5?"":"Buzz"));}
1+
main(i){while(printf("%i\r%s%s\n",i++,i%3?"":"Fizz",i%5?"":"Buzz")-9);}

0 commit comments

Comments
 (0)