| _____ | char ch [10] | | _____ | k[0][0] = 44; | | _____ | k[2][5] = 44; | | _____ | int k[5]; | | _____ | float flt [2][6]; | | _____ | k[4] = k[0] + k[6]; | | _____ | k[0] = 123; | | _____ | k[0][1] = 44; | | _____ | int k[7] = {2, 89, 1, 7890, 6, 900, 56} or int k[] = {2, 89, 1, 7890, 6, 900, 56} | | | | 1. | Code the statement(s) to define an array of characters named ch which has 10 elements. | | 2. | Assume that the statements necessary to define an array of int's named k which has 7 elements and initialized them with the following values: 2, 89, 1, 7890, 6, 900, 56 HAS ALREADY BEEN CODED code the statement to change the value of the element of the array that has 2 to 123 | | 3. | Assume that the statements necessary to define an array of int's named k which has 7 elements and initialized them with the following values: 2, 89, 1, 7890, 6, 900, 56 HAS ALREADY BEEN CODED code the statement to add the element containing the value 2 to the element containing the value 56, and store the value in the element containing 6 | | 4. | Code the statements necessary to define an array of int's named k which has 7 elements and initialize them with the following values in one C statement 2, 89, 1, 7890, 6, 900, 56 | | 5. | Code the statement(s) to define an array of ints named K which has 5 elements | | 6. | Code the statement(s) to define a two dimensional array of floats named flt that has 2 rows and 4 columns. | | 7. | assume a 2 dimensional array of ints named k has been defined with 3 rows and 6 columns. Code the statement to assign the value 44 to the array element in the first row and the second column | | 8. | assume a 2 dimensional array of ints named k has been defined with 3 rows and 6 columns. Code the statement to assign the value 44 to the array element in the first row and the first column | | 9. | assume a 2 dimensional array of ints named k has been defined with 3 rows and 6 columns. Code the statement to assign the value 44 to the array element in the last row and the last column | |