+ 2

What is massive???? I mean an array!

How I can use it? Where I can use and why I need it?

22nd Nov 2018, 7:44 PM
Bowbng
3 Answers
+ 9
I think massiv (ĐŒĐ°ŃŃĐžĐČ) stands for "array" in Russian :)
23rd Nov 2018, 10:09 AM
Kuba SiekierzyƄski
Kuba SiekierzyƄski - avatar
+ 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.
22nd Nov 2018, 10:44 PM
Daniel Cooper
Daniel Cooper - avatar
0
What is massive?
22nd Nov 2018, 8:08 PM
Izaak GOLDSTEIN
Izaak GOLDSTEIN - avatar