Computer Science, asked by shabi2384, 1 year ago

write the syntax to define a array of 50 elements

Answers

Answered by princessgagan2pdcgcl
5
The syntax of declaratiom of array elements is below

data_type array_name[array_size];

e.g.

int a[50]={1,2,3,4,..........,50};
Answered by anchal7992
4

Answer:

The syntax of declaration of array element is below

Explanation:

data_type array_name[array_size];

e.g.

int[50]={1,2,3,4........50};

Similar questions