What is Heap?
Answers were Sorted based on User's Feedback
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 |
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 |
What is difference between && and & in c?
What are the features of c language?
who developed c and why he developed c?
Tell us bitwise shift operators?
all c language question
find the minimum of three values inputted by the user
Write a program to reverse a given number in c language?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
What are the advantages of union?
Why we use int main and void main?
What does struct node * mean?
What is pointer and structure in c?