Question: What would be the output of the code snippet below, given that the intial value of bin func1 is 0. 1 #include int funci(int a[],
What would be the output of the code snippet below, given that the intial value of bin func1 is 0. 1 #include int funci(int a[], int size); int main() 6 int a[7]-{0,1,2,3,6,7,8); int by b- funci(a, 7); printf("%d",b); return; 14_ int funci(int a[], int size) 15 int i, by for(i-e;i 4_int main() 5 int a[]={0,1,2,3,6,7,8}; int *b; b = a; b +4; printf("%d", *(b)); returne; a. 2 b. 3 c. 6 d. 7 The following array declartion is valid: double values[12] = {78.5, 83.5, 9.0, 94.0, 4.0, 99.0, 88.0, 42.5,2.0, 59.5, 77.0, 3.5}; a. true b. false 25. (2.0 points) What is the right data type for the following array: worid $[0] [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] a. Integer array b. double array c. float array d. char array 26. (2.0 points) In the declaration of the below, what will be the output of a[9] int a[ ] = {0,1,2,3,4,5,6,7,8,9,10,11)