what do you mean by memory management operators
Answer Posted / snigdhadeb
Memory management operators are "new" and "delete".
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
how to explain our contribution in the project?
Why ctype h is used in c++?
What is the auto keyword good for in c++?
What is different in C++, compare with unix?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
In which situation the program terminates before reaching the breakpoint set by the user at the beginning of the mainq method?
what is scupper?
Explain the use of this pointer?
What do you mean by ‘void’ return type?
Which coding certification is best?
What is a catch statement?
How much maximum can you allocate in a single call to malloc()?
What is copy constructor? Can we make copy constructor private in c++?
Differentiate between a pointer and a reference with respect to c++.
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300