WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c
file management?
Answer Posted / shirish
malloc: malloc create the single block of given size by user
calloc: calloc creates multiple blocks of given size
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How is null defined in c?
Is swift based on c?
What is indirection in c?
Explain the properties of union. What is the size of a union variable
What is the advantage of using #define to declare a constant?
What is exit() function?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
How is pointer initialized in c?
What is a function in c?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
In which language linux is written?
What is the significance of an algorithm to C programming?
write a c program to find the sum of five entered numbers using an array named number
write a program to display all prime numbers
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational