Explain what are the advantages and disadvantages of a heap?


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

Post New Answer

More C Interview Questions

main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


Why shouldn’t I start variable names with underscores?

0 Answers  


Explain how do you view the path?

0 Answers  


What are the Advantages of using macro

0 Answers  


write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?

3 Answers   Mind Tree,






suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan

1 Answers  


can any one provide me the notes of data structure for ignou cs-62 paper

0 Answers   Ignou,


how to generate sparse matrix in c

3 Answers  


how to print this pyramid * * * * * * * * * * * * *

2 Answers  


what is the difference between i++ and ++i?

5 Answers  


what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }

6 Answers  


What is the return type of sizeof?

0 Answers  


Categories