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 |
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
What is the use of in c?
write a program to print calender using for loop.
In C, What is the #line used for?
Explain how can I convert a string to a number?
Hai why 'c' is the middle language
write a program that print itself even if the source file is deleted?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
How can this be legal c?
what is the difference b/w NULL and null?
What is the difference between malloc() and calloc() function in c language?
write a program wch produces its own source code aas its output?