Created
November 4, 2014 08:41
-
-
Save chichunchen/543a269fb5783ab6951d to your computer and use it in GitHub Desktop.
C++ dynamic allocate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment