What is Array in C - Facts about Arrays in C
What is Array in C – Facts about Arrays in C
In this post, velaivetti shares the facts about array in C. Lets see the facts below
Facts about Array in C
1] An array is a collection of similar elements. It is also known as a subscripted variable.
2] Before using an array its type and size must be declared. For example int arr[30];
float a[60];
char ch[25];
3] The first element in the array is numbered as 0, so the…
View On WordPress

















