If an array is declared as int a[4] = {4, 0, 2, 3}, then what values are assigned to a[0] & a[4]?
Answers
Answered by
1
Explanation:
here a[0] will be 4 and maximum size is from 0 to n-1. here 0-3 location.if we access the array array will be out of index
Similar questions