#include #include #define SIZE 5 // Return the number of elements divisible by 3 int count_multiple(int size, int arr[]) { int counter = 0; for (int i = 0; i < size; i++) { if (arr[i]%3 == 0) { counter++; } } return counter; } int main(void) { // Only your function is called during testing // Any changes in this main function will not // be used in testing int array1[SIZE] = {9, -3, 1, 5, 2}; printf("%d are multiples of 3\n", count_multiple(SIZE, array1)); return 0; }