Computer Science, asked by rewaasrour2000, 5 months ago

1)how many types of arrays are there?
2)what is array syntax?
3)how do you read an array?
4)how do you create an array?
5)what is the types of array in c?

Answers

Answered by Anonymous
1

Answer:

  1. Array declaration syntax is very simple. The syntax is the same as for a normal variable declaration except the variable name should be followed by subscripts to specify the size of each dimension of the array. The general form for an array declaration would be: VariableType varName[dim1, dim2
  2. three different kinds

There are three different kinds of arrays: indexed arrays, multidimensional arrays, and associative arrays.

Similar questions