what do you mean by array initialisation?
Answers
Answered by
1
Answer:
Different ways to Initialize all members of an array to the same value in C. An array is a collection of data that holds fixed number of values of same type. For example: if you want to store marks of 100 students, you can create an array for it. int num[100];
Similar questions