What is Heap?

Answers were Sorted based on User's Feedback



What is Heap?..

Answer / anurag

Heap is portion of memory which is allocated with program
address space when the program require memory at run time,
the memory from heap is allocated.apart from this all global
variables are also allocated their space from heap.

Is This Answer Correct ?    7 Yes 0 No

What is Heap?..

Answer / harshal

Heap is for being free memory.

Is This Answer Correct ?    2 Yes 1 No

What is Heap?..

Answer / nisha nair

A data structure called heap is a binary tree with keys
assigned to its nodes provided it satisfies two
requirements:

1. Tree shape requirement.
2. Parental domainance requirement.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C Interview Questions

A stack can be implemented only using array?if not what is used?

3 Answers   InterGlobal,


Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

0 Answers   Celstream,


Differentiate between #include<...> and #include '...'

0 Answers  


design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.

2 Answers  


What is volatile keyword in c?

0 Answers  


Why the use of alloca() is discouraged?

2 Answers   Oracle,


Explain how can you be sure that a program follows the ansi c standard?

0 Answers  


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

0 Answers   Wilco,


C program to find frequency of each character in a text file?

6 Answers  


What are the different data types in C?

0 Answers  


how to find the kth smallest element in the given list of array elemnts.

8 Answers   Silicon,


What is meant by type casting?

0 Answers  


Categories