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 |
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
Why #include is used in c language?
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
What is the ANSI C Standard?
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
For what purpose null pointer used?
What are dangling pointers in c?
What is scope rule of function in c?
Do you know what are bitwise shift operators in c programming?
What is 'bus error'?
c program to manipulate x=1!+2!+3!+...+n! using recursion