Computer Science, asked by mdwesmanthe2nd, 2 months ago

Demonstrate how to assign a value to the third element of an array called finalGradeArray.

Answers

Answered by mandvitrivedi
3

Explanation:

If your array has static storage allocation, it is default initialized to zero. However, if the array has automatic storage allocation, then you can simply initialize all its elements to zero using an array initializer list which contains a zero.

Similar questions