Computer Science, asked by mrscutie, 10 months ago

what is the Array in c programming...??

Answers

Answered by Anonymous
2

Answer:

An array is a collection of a fixed number of values of a single type. For example: if you want to store 100 integers in sequence, you can create an array for it. int data[100]; The size and type of arrays cannot be changed after its declaration.

hope it helps

Similar questions