oose the correct statement about C language arrays.
A. an array size cannot be chaged once it is created.
B. Array element value can be changed any number of times,
To access nth element of array student, use student[n-l] as the array index starts from o
D. All the above
h
Answers
Answer:
D.
Explanation:
All the above
I am not in 12th but i given answer.
mark as Brainliest
Answer:
From the given options , the correct option is D) All the above
Explanation:
From other given options:
A) The size of an array is the number of elements in it if you create it by directly initializing its values. Thus, the size of the array is determined at the time of its creation or initialization; once that is completed, the size of the array cannot be changed.
B) Once created, an array's size cannot be changed. Students[n-1] is used to access the Nth element of an array students because the starting index is 0.
C) Students[n-1] is used to access the Nth element of an array students because the starting index is 0. Explanation: If an array is not initialized, ARRAY SIZE must be mentioned.
#SPJ6