What is Heap?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I do peek and poke in c?

623


Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

648


What do you mean by c what are the main characteristics of c language?

575


What is extern storage class in c?

515


Explain what is page thrashing?

613






What does printf does?

752


Is c still used?

606


What is c system32 taskhostw exe?

597


How can I implement a delay, or time a users response, with sub-second resolution?

630


What is the correct declaration of main?

681


Which node is more powerful and can handle local information processing or graphics processing?

831


a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f

1589


All technical questions

1514


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

2940


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

3149