C++ uses New to open arrays and release arrays Updated to 2 days ago int*arr=new int[10];//Develop array 3 in the heap delete[] arr;//Release array Previous Next