Assume an integer array is declared and initialized as below (Figure 1), answer sub-questions (a) until (c):
`int arr1[10] = {3, 8, 9, 4, 8 };`
`int arr2[10] = {1, 2, 3, 4, 5};`
Figure 1
Write C statements for the following questions:
(a) Sum the value of 3<sup>rd</sup> element and 5<sup>th</sup> element of arr2 and store it into the 6<sup>th</sup> element of arr1.
[2 marks]
(b) Read input variable named \texttt{value} from user and store it into the 3<sup>rd</sup> element of arr1.
[2 marks]
(c) What are the updated content for arr1 [ ] after the execution of statements in (a) ?
[2 marks]