array diclaration c++ code example
Example 1: arrays in c++
#include <iostream>
#include <array>
int main()
{
int example[5];
int* another = new int[5];
delete[] another;
example[0] = 1;
example[1] = 2;
example[2] = 3;
example[3] = 4;
for (int i = 0; i < 5; i++) {
example[i] = 2;
}
int* ptr = example;
example[2] = 5;
*(ptr + 2) = 6;
std::cout << example[2] << std::endl;
*(int*)((char*)ptr + 8) = 8;
std::cout << example[2] << std::endl;
std::array<int,5> stda;
std::cout << stda.size() << std::endl;
std::cin.get();
}
Example 2: how to make a array in c++
int a[5] = {1, 2 3, 4, 5};