array, int a[6] ={3,6,9,0,2,5} a[3] shows the value
Attachments:
Answers
Answered by
7
Answer:
a[3] will show 0
Explanation:
Index numbers starts from 0 to n-1 where n is the length of the array
a[3] here index number is 3
so the element in index number 3 is 0
Answered by
0
Given : array, int a[6] ={3,6,9,0,2,5}
To Find : a[3]
Solution:
a[6] has value from a[0] to a[5]
as array counter starts from 0
Hence following are the values from arrays
a[0] = 3
a[1] = 6
a[2] = 9
a[3] = 0
a[4] = 2
a[5] = 5
Hence a[3] = 0
Learn more:
array, int a[6] ={3,6,9,0,2,5} a[3] shows the value
https://brainly.in/question/38083074
Merge sort takes 45 sec to sort an array of input size of 128. How ...
https://brainly.in/question/21755417
Similar questions
Physics,
1 month ago
Political Science,
1 month ago
English,
1 month ago
Math,
3 months ago
Geography,
3 months ago