Write a program named reverse.c that reverses an array of integers using pointers. Requirements: • No global variables may be used • Your main function may only declare variables and call other functions • The array for your functions must be passed as a pointer, i.e., int *nums Assumptions: O Input will always be valid • No arrays will be longer than 20 numbers. Example 1: Enter size of array: 5 Enter elements in array: 1 2 3 4 5 The reversed array is [5, 4, 3, 2, 1] Example 2: Enter size of array: 3 Enter elements in array: 8 10 11 The reversed array is [11, 10, 8]