implement dynamic memory allocation code example
Example 1: dynamic memory allocation
int *p = new int; // request memory
*p = 5; // store value
cout << *p << endl; // Output is 5
delete p; // free up the memory
cout << *p << endl; // Output is 0
Example 2: dynamic memory allocation in c++
char* pvalue = NULL; // Pointer initialized with null
pvalue = new char[20]; // Request memory for the variable