Horje
creare array con c++ Code Example
creare array con c++
#include <iostream>
int main()
{
int myArray[] {2, 4, 6, 8, 10};
for (int i=0; i<5; i++)
{
std::cout << "index: " << i << " - value: " << myArray[i] << "\n";
}
return 0;
}
Source: www.html.it




Cpp

Related
c++ get maximum value unsigned int Code Example c++ get maximum value unsigned int Code Example
how to make calculaor in c++ Code Example how to make calculaor in c++ Code Example
min element in vector c++ Code Example min element in vector c++ Code Example
C++ sudoku solver Code Example C++ sudoku solver Code Example
format c++ discord Code Example format c++ discord Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6