What is the difference between "calloc" and "malloc"?
Answer Posted / gallanticscorp
calloc means alloting memory dynamically
malloc means alloting memory at first and it is fixed
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
How does class accomplish data hiding in c++?
If all is successful, what should main return a) 0 b) 1 c) void
Carry out conversion of one object of user-defined type to another?
Is it possible to have a recursive inline function in c++?
Does improper inheritance have a potential to wreck a project?
What is searching? Explain linear and binary search.
What is a local variable?
What are c++ templates used for?
Implement stack operations with pointers with appropriate exception checks.
Explain the properties and principles of oop.
How do you show the declaration of a virtual constructor?
What is a .lib file in c++?
What are pointers used for c++?
Why is c++ called oops?
write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;