Difference between delete and delete[]?
Answer Posted / namitha
delete is a function used to deallocate the storage space.
delete[] is a function used to deallocate the storage space
of an array.
| Is This Answer Correct ? | 11 Yes | 8 No |
Post New Answer View All Answers
Can I uninstall microsoft c++ redistributable?
Why do we use constructor?
What is singleton class in c++?
What size is allocated to the union variable?
What is c++ virtual inheritance?
What's the best free c++ profiler for windows?
What is a try block?
Why was c++ made?
What is an iterator?
What is a character in c++?
What are iterators in c++?
What is the difference between function overloading and operator overloading?
Why do we use iterators?
How do you generate a random number in c++?
Does c++ have arraylist?