Computer Science, asked by abhinavpramod5, 10 hours ago

find the value of the score[4] based on following declarative statement int scor [5]={98,87,92,79,85}​

Answers

Answered by rajumohan1998
2

Answer:

85

Explanation:

Since array index starts with 0

score[0] will be 98

score[4] is 85 i.e.

generally a last element of a array would be score [n-1]

Similar questions