1. Consider the following declaration: char s[6]; What is the maximum length of a string assigned to s. 2. How many characters are required to store each of the following: a) '\n' b) 'n' c) "CSC215" d) "C" e) "C\n" 3. What is the value of each element in val: char val[12]="Hi class"; 4. Write the declaration for val if val is required to hold a string of length 20. 5. Examine the following declaration and code fragment. Modify the loop to protect againast an "out of bounds" violation. const int SIZE=10; char val[SIZE]; i=0; while (val[i] != '\0') { val[i]='X'; i++; }