Write a function in C that reads in an array of 100 integers. Your function should count the number of integers in the a
Posted: Wed Apr 27, 2022 3:39 pm
Write a function in C that reads in an array of 100 integers. Your function should count the number of integers in the array that are divisible by one of 2,3 or 5, but not by 7. Your function should then return this total value. Note: if a number is divisible by more than one of 2,3 or 5 it should only count it once.