Computer Science, asked by aamnaashaikhh, 1 month ago

In Array s[10], s indicates___________​
a)Array name

b)Array address

c)Array number

d)Array formula

Answers

Answered by soingurneet
1

Answer:

datatype array_name [ array_size ] ;

For example, take an array of integers 'n'.

int n[6];

n[ ] is used to denote an array 'n'. It means that 'n' is an array.

So, int n[6] means that 'n' is an array of 6 integers. Here, 6 is the size of the array i.e. there are 6 elements in the array 'n'.

Answered by rajanirathore555
1

Answer:

array number is the correct option

Similar questions