instructions create a vs c project using the following name format firstname lastname 1202 in the main file sum create a function that calculates the sum of all numbers of an integer array. int sum(const int array[], const int size) example of pseudocode function sum // input: integer array, size // output: sum sum <-- 0 for i from 0 to size-1 sum <-- sum array[i] end for return sum recursive sum create a function that calculates the sum of all numbers of an integer array recursively. int recursivesum(const int array[], const int size, const int position) example of pseudocode function recursivesum // input: integer array, size, position (to analyze) // output: partial sum if position >