WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c
file management?
Answer Posted / bavithra
malloc() doesnot initialize the allocated memory
calloc() initializes the allocated memory to ZERO
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is a char c?
What is the use of bit field?
all c language question
Define the scope of static variables.
Is c is a middle level language?
What are the 4 types of functions?
Which header file is used for clrscr?
How do I convert a string to all upper or lower case?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
Does * p ++ increment p or what it points to?
What is the use of pointers in C?
How can I dynamically allocate arrays?
What is void pointers in c?
Can a variable be both constant and volatile?
How is a structure member accessed?