How much memory does the new operator allocate?
New Operator Memory Allocation
Hey @tusharnitharwal
the new operator allocates the same size of memory as a normal variable with the same data type would do. For example, an integer declared normally or dynamically would allocate equal amount of memory.