Problem:
Give the function header for each of the following functions.
Question 1: Function areaTriangle that takes two double arguments, base and height, and returns a double value called area. (Note that the area of a triangle is ½ x base x height.)
Question 2: Function max that takes four integers, w, x, y, z, and returns an integer.
Question 3: Function outputHeaders that does not receive any arguments and does not return a value.
Question 4: Function getASCII that takes an character argument, ch, and returns an int representing the characters ASCII value.
Any help would be greatly appreciated!