Multiple choice Which of the following is not correct in context to array in C language? It is a group of variables of similar datatype. It stores the data in consucative memory location. It is referred by a common name. int val[5]. Array size can be changed during program execution. Reveal answer Fill a bubble to check yourself E Correct answer Explanation Increasing or decreasing of array size is not possible during program execution. Array size must be decided during program coding.