array using new c++ code example
Example 1: declare dynamic array c++
int main()
{
int size;
std::cin >> size;
int *array = new int[size];
delete [] array;
return 0;
}
Example 2: how to dynamically allocate an array c++
int* a = NULL;
int n;
cin >> n;
a = new int[n];
for (int i=0; i<n; i++) {
a[i] = 0;
}
. . .
delete [] a;
a = NULL;
Example 3: how to make an array c++
int foo [] = { 16, 2, 77, 40, 12071 };
Example 4: 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 5: how to array in c++
int foo [5] = { 16, 2, 77, 40, 12071 };
Example 6: c++ allocate dynamic with initial values
int length = 50;
int *array = new int[length]();