In C++, which of the following statements correctly returns the memory from the dynamic array pointer pp to the free store?
delete pp [ ];
delete *pp;
delete [ ]pp ;
delete pp;
Option 3 : delete [ ]pp ;
In C++, which of the following statements correctly returns the memory from the dynamic array pointer pp to the free store?
delete pp [ ];
delete *pp;
delete [ ]pp ;
delete pp;
Option 3 : delete [ ]pp ;
Sign in to your account