What is the difference between delete and delete[]
Answer Posted / glibwaresoftsolutions
• delete: Frees memory allocated for a single object.
• delete[]: Frees memory allocated for an array of objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which sorting is used in arrays sort in java?
Explain the overview of UDP messaging.
Which sorting algorithm is best in java?
Is there a case when finally will not execute?
What is nested loop? What is dangling else condition in it?
What is prefix of a string?
What is meant by attribute?
What is overriding in java?
How to access arraylist elements in java?
What is difference between == and === in js?
Does list maintain insertion order java?
Why is static used?
what is anonymous class in java?
What is singleton class example?
Implement two stacks using a single array.