![]() |
Regarding infinite loop and heap memory
I have couple of questions.
My friend put across this question to me asking whether the following piece of code would result in an infinite loop... while(1) { int i; } I guess it doesnt result in an Infinite loop but instead keeps on getting executed until the entire memory gets exhausted.. Could I please get a validation?? And Could i get to know what heap memory means?? Does that refer to data segment? (if yes could i plz get to know how size of data segment is determined)?? |
Re: Regarding infinite loop and heap memory
First of all I would like to welcome you to go4expert programming forum
Code:
while(1)Quote:
Quote:
Let A and B be nodes of a heap, such that B is a child of A. The heap must then satisfy the following condition (heap property): key(A) ≥ key(B) Quote:
|
Re: Regarding infinite loop and heap memory
One thing I'll add,-
There will be memory allocation from stack-memory. The heap memory has nothing to do here. |
| All times are GMT +5.5. The time now is 19:03. |