Multiple choice

Which of the following is not correct in context to array in C language?

  1. It is a group of variables of similar datatype.

  2. It stores the data in consucative memory location.

  3. It is referred by a common name.

  4. int val[5].

  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.