Program: Prepare a C function that returns the number of elements smaller than 3.0 in an array.
The function prototype should be
int smaller_than_three(int *x, int size);
Where x is a pointer to the first element of the array, and size is the size of the array
You have to make a function returns the number of elements.