write the syntaxto define an array of 50 element
Answers
Answered by
1
The syntax of declaration of array element is below
data_type array_name[array_size];
e.g.
int a[50]={1,2,3,4......50};
Similar questions