What is the index value of the first element in an array?
Answers
Answered by
4
the index value of the first element in an array is X[0].Here X is variable name
Answered by
1
The index value of the first element of the array is 0.
Explanation:
- An Array is used to refer to the multiple variables with the same name. It is a user-defined data type which is the collection of variables of the same type. The variables are used to store continuous memory allocation.
- When the user wants to declare an array, He can do this by the help of the following syntax in the C-language-- "data_type variable_name[size_of_the_array];".
- Then the array starting index is 0 and the last index is (Size-1).
- If the array variable name is A and the size is 5 then the first variable is A[0] and the last variable is A[4].
Learn More:
- Array : https://brainly.in/question/8457756
Similar questions