Horje
how to initialize array with new in c++ Code Example
how to initialize array with new in c++
int* a = NULL;   // Pointer to int, initialize to nothing.
int n;           // Size needed for array
cin >> n;        // Read in the size
a = new int[n];  // Allocate n ints and save ptr in a.
for (int i=0; i<n; i++) {
    a[i] = 0;    // Initialize all elements to zero.
}
. . .  // Use a as a normal array
delete [] a;  // When done, free memory pointed to by a.
a = NULL;     // Clear a to prevent using invalid memory reference.




Cpp

Related
C++ std::string find and replace Code Example C++ std::string find and replace Code Example
find kth max and min element in an array Code Example find kth max and min element in an array Code Example
c++ how to make a typewriter effect Code Example c++ how to make a typewriter effect Code Example
c++ typing animation Code Example c++ typing animation Code Example
how to make a typing effect c++ Code Example how to make a typing effect c++ Code Example

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