+ 1
What is the meaning of the array
thanks
2 ответов
+ 35
array means collection of variables/elements of same type
//when u want to store 12 , 32 , 34 , 1, 9 , then it will be tedious process to declare and give value to variables for each integer , better way is to store them in a array
ie , int arr []={12,32,34,1,9};
//btw u can find more information in the lesson ☺ , happy coding
0
thank's