// Pantea Aria // functions, arrays // Write a function called has_zero that: // Takes an array of integers and its size as input (what is the prototype of this function?) // Returns the number of 0 in the array #include int main(void) { int array[] = {2, 0, 5, -3, 0 , 0, 4}; return 0; }