Name: CS-220 Spring 2016 Lab 02 Report Due Friday, Feb. 12, 2016 1. Copy a version of your working "factorial" function here: (Whatever data type you currently are using is OK) 2. What is the largest number that you can use to compute a correct factorial using "char" as the returned value? Why? 3. What is the largest number that you can use to compute a correct factorial using "unsigned char" as the returned value? Is this different from signed char? If not, why not? If so, why? 4. What type of integer data allows factorial to return the largest correct result? What is the largest argument for which factorial returns a correct result using this type? 5. What is the largest value for which this program can compute an exact and correct result? What type of data produces this largest value?