What are the differences between new and malloc in C?


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

Post New Answer

More C Interview Questions

formula to convert 2500mmh2o into m3/hr

0 Answers  


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


What is pointers in c with example?

0 Answers  


Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.

2 Answers   Scientific Atlanta, Wipro,


What is the function of volatile in c language?

0 Answers  






Write a c program to build a heap method using Pointer to function and pointer to structure ?

0 Answers   Wipro,


how to implement stack operation using singly linked list

2 Answers  


Does c have circular shift operators?

0 Answers  


What is the purpose of void in c?

0 Answers  


Give differences between - new and malloc() , delete and free() ?

0 Answers   Genpact,


Are the expressions * ptr ++ and ++ * ptr same?

0 Answers  


what is a c-language.what is do.

4 Answers   HCL,


Categories