# FizzBuzz Use Z15. Instead of Z3 x Z5. Well, I have deleted tech posts because I hate technology. But I think this is not really a tech problem. `````````````````````````````````````````````````````````````````` #include const char *ARRAY[15] = { "FizzBuzz", "", "", "Fizz", "", "Buzz", "Fizz", "", "", "Fizz", "Buzz", "", "Fizz", "", "" }; int main(void) { int num, i; printf("Num? "); scanf("%d", &num); for (i=1; i<=num; ++i) { if (ARRAY[i%15] == "") printf("%d\n", i); else printf("%s\n", ARRAY[i%15]); } return 0; } ``````````````````````````````````````````````````````````````````