Post History
C (gcc), 103 bytes Using a different approach than my previous solution, therefore posting as new answer as suggested here. i;main(){while(i++<100){char s[]="FizzBuzz",*t=s+4*!!(i%3);if(i%5)...
Answer
#1: Initial revision
# [C (gcc)], 103 bytes Using a different approach than my previous solution, therefore posting as new answer as suggested [here.][meta post] <!-- language-all: lang-c --> i;main(){while(i++<100){char s[]="FizzBuzz",*t=s+4*!!(i%3);if(i%5)s[4]=0;*t?puts(t):printf("%d\n",i);}} [Try it online!][TIO-kwbuymma] [C (gcc)]: https://gcc.gnu.org/ [TIO-kwbuymma]: https://tio.run/##S9ZNT07@/z/TOjcxM09Ds7o8IzMnVSNTW9vG0MBAszo5I7FIoTg61lbJLbOqyqm0qkpJR6vEtljbREtRUSNT1VjTOjMNSJtqFkebxNoaWGuV2BeUlhRrlGhaFRRl5pWkaSippsTkKelkalrX1v7/DwA "C (gcc) – Try It Online" [meta post]: https://codegolf.codidact.com/posts/284894/284901#answer-284901