Q. Which of the following is correct about array indexing?
β
Correct Answer: (D)
a[0] is the first element
Explanation: Arrays in C are 0-indexed, so the first element is a[0].