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 Lazy evaluation in C? Give an example.
Which header file should you include if you are to develop a function which can accept variable number of arguments?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
swap two integer variables without using a third temporary variable?
a c code by using memory allocation for add ,multiply of sprase matrixes
what is purpose of fflush(stdin) function
How would you obtain the current time and difference between two times?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
What is the Lvalue and Rvalue?
Why pointers are used in c?