+ 2
What is massive???? I mean an array!
How I can use it? Where I can use and why I need it?
3 Answers
+ 9
I think massiv (ĐŒĐ°ŃŃĐžĐČ) stands for "array" in Russian :)
+ 2
Arrays store similar data types.
For example. Let's declare an array that stores 5 integers.
int myArray[5] = {5, 8, 3, 4, 2};
int - the data type the array will store.
MyArray - The name of the array.
[5] - how many of the element it will store.
{5, 8, 3, 4, 2} - The array itself. It's contents are the integers 5, 8, 3, 4 and 2. These are random numbers that I chose.
0
What is massive?