Problem
Write a function that receives an integer array and uses pointer notation to count how many numbers in the array are evenly divisible by 5. Write a complete program that obtains up to 100 positive integers from the user, uses the above written function to count how many of them are divisible by 5, and prints this count. User will enter a -1 to indicate end of entering data. Your program must use dynamic memory allocation.