
Operators and Expressions 263
9.6 MEMORY MANAGEMENT OPERATORS
In C language, we have studied the function malloc(),
calloc() and realloc() to allocate memory dynamically at
run time in the program. The free() function is used to release
the resources allocated by these functions. C++ allows us to use these
functions. In addition, C++ provides operators which help us to
allocate and release the memory in an easy way than these functions.
These new operators are new and delete. The new operator
creates an object and delete destroys the object. These operators
are easy in writing as compared to malloc() and calloc().
The syntax for new and ...