Using C, pseudo-C or pseudocode, solve the following problem…

Using C, pseudo-C or pseudocode, solve the following problem. Note that this means you do not need to define a main function, or worry about syntax. If you describe your answer in plain text, make sure you are detailed enough to demonstrate an understanding of programming concepts to solve a problem.  Even number: Write a function that takes a single int input and returns a 0 if the input variable was not even and a 1 if it was even. Hint: the modulo operator (%) may be useful

Using C, pseudo-C or pseudocode, solve the following problem…

Using C, pseudo-C or pseudocode, solve the following problem. Note that this means you do not need to define a main function, or worry about syntax. If you describe your answer in plain text, make sure you are detailed enough to demonstrate an understanding of programming concepts to solve a problem.  Print the array: Write a function that returns nothing and takes an integer array and its size as the input. The function loops through the array and prints it values to the screen.