c++ - int *array = new int[n]; what is this function actually doing? - Stack Overflow
I am confused about how to create a dynamic defined array: int *array = new int[n]; I have no idea what this is doing. I can tell it's creating a pointer named array that ... @unapersson: If a C++ programmer doesn't know what int *array = new int[n]; does...