New Operator Memory Allocation

How much memory does the new operator allocate?

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.