Click to See Complete Forum and Search --> : C++


Mahesh
May 19th, 1999, 05:16 AM
Is it necessary to check for memory allocation after everytime we do 'new' ?

May 19th, 1999, 03:14 PM
It is necessary, but the better approach is put the 'new' in "try" block so that you will immediately come to know that ur new is allocating memory or not.

Happy programming.
:)