What's the difference between calloc() and malloc()?
Answers were Sorted based on User's Feedback
Answer / guest
calloc() takes two arguments, and initializes the allocated
memory to all-bits-0.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / k.thejonath
Malloc allocates a block of memory whereas using calloc we
can allocate array of memory blocks and all locations are
initialized to zeros
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / valli
the diffence is
1.prototype or no of arguments
calloc takes two arguments
where as malloc takes 1 argument
void *calloc(int ,int);
first argument is no of blocks required
secund argument is no of elementts in each block required
void *malloc(int);
in this total no of bytes reuired are taken as the argument
2.
calloc clears the bytes which are allocated or reserved
where malloc can not guarentee this
sorry for my poor english
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / bhaswati
malloc allocates m bytes means it takes one arguments.but calloc allocate m times n bytes and initialized the memory location to zero.it takes two arguments.
| Is This Answer Correct ? | 0 Yes | 0 No |
If input is 123 then how to print 100 and 20 and 3 seperately?
Explain how can you avoid including a header more than once?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Explain the ternary tree?
What is the difference between char array and char pointer?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
write a program that explain #define and # undef directive
What is Heap?
biggest of two no's with out using if condition statement
what is function pointer?
Explain what are the __date__ and __time__ preprocessor commands?
How can you access memory located at a certain address?