Can you please explain the difference between malloc() and calloc() function?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How many types of operators are there in c?

0 Answers  


Where are local variables stored in c?

0 Answers  


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


write a addition of two no. program with out using printf,scanf,puts .

4 Answers  


List the difference between a 'copy constructor' and a 'assignment operator' in C?

0 Answers   Accenture,






How can I automatically locate a programs configuration files in the same directory as the executable?

0 Answers  


Why c is called top down?

0 Answers  


Subtract Two Number Without Using Subtraction Operator

0 Answers  


can any one tel me wt is the question pattern for NIC exam

0 Answers   NIC,


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?

2 Answers  


What is the difference between far and near in c?

0 Answers  


Categories