WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c
file management?
Answer Posted / divya sharma
malloc takes the single argument nd calloc takes two argument
malloc initialize byte of memory while calloc initialize the
block of memory
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
write a program to rearrange the array such way that all even elements should come first and next come odd
How do you redirect a standard stream?
What is binary tree in c?
Explain what is a static function?
Describe static function with its usage?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What is array of structure in c programming?
Explain what is wrong with this program statement? Void = 10;
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Why is event driven programming or procedural programming, better within specific scenario?
What is meant by errors and debugging?
where are auto variables stored? What are the characteristics of an auto variable?
Here is a neat trick for checking whether two strings are equal
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is New modifiers?