What is an array? Write the syntax for decleration of one dimensional array in c prgram
Answers
Answered by
0
a large collection of things,,especially one that is impressive and is seen by other people
Answered by
0
Answer:
An array is a collection of one or more values of the same type. Each value is called an element of the array. The elements of the array share the same variable name but each element has its own unique index number (also known as a subscript). An array can be of any type, For example: int , float , char etc.
Explanation:
C Array is a collection of variables belongings to the same data type. ... Always, Contiguous (adjacent) memory locations are used to store array elements in memory. It is a best practice to initialize an array to zero or null while declaring, if we don't assign any values to array.
Similar questions