Problem T1.1 void findLargest(int a, int b, int c){ /* ** This function writes out the largest of its ** three variables. */ // your code here } Problem T1.2 void writeElements(int list[]){ /* ** This function writes out the elements of a ** list. */ } Problem T1.3 int findHighest(int list[]){ /* ** This function returns the index of the ** largest element in a list. */ } Problem T1.4 int findHighest(int list[]){ /* ** This function returns the value of the ** largest element in a list. */ }