initalising array c++

int myArray[5] = {2, 4, 6, 8, 10}; - "int" is the data type of the elements in the array. - "myArray" is the name of the array. - "[5]" indicates the size of the array, which is 5 elements. - The elements inside the curly braces { } are the initial values for each element in the array, separated by commas.