Which statement is trust about new operator in C++?
- new is an operator which calls the constructor also
- new allocates memory at run time and assigns newly allocated memory block’s memory too the pointer
- After allocating the memory new operators returns the pointer of the same type