write the syntax to define a array of 50 elements
Answers
Answered by
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};
data_type array_name[array_size];
e.g.
int a[50]={1,2,3,4,..........,50};
Answered by
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
English,
8 months ago
Science,
8 months ago
Environmental Sciences,
1 year ago
Chemistry,
1 year ago