C
#include <stdio.h>int main(void){int i;for (i = 1; i <= 100; i++) {// If the number is divisible by 3, remainder will be 0// We use the operator ! to change 0 to 1 so that the overall// condition becomes trueif (!(i % 3) && !(i % 5)) // Check if it's divisible by 3 and 5 by taking % (modulo) 3 and 5printf("FizzBuzz");else if (!(i % 3)) // Check if it's divisible by just 3printf("Fizz");else if (!(i % 5)) // Check if it's divisible by just 5printf("Buzz");elseprintf("%d", i);printf("\n");}return 0;}