1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <iostream>
int main() {
int size;
std::cout << "Enter the size of the array: ";
std::cin >> size;
// Allocate an array on the heap
int* arr = new int[size];
// Initialize the array
for (int i = 0; i < size; ++i) {
arr[i] = i * 10;
}
// Use the array
for (int i = 0; i < size; ++i) {
std::cout << arr[i] << " ";
}
std::cout << std::endl;
// Deallocate the array
delete[] arr;
return 0;
}
Back to heap