Can anyone tell what is stack overflow? what precaution we
should take?
Answer / vishnu nayak
Memory is divided into the following catageory
Stack Area
Heap Area
Data Area
Code Area
All Local Variables, formal parameters, return address of a
function are stored at stack area.
Stack Over flow mainly occurs in Recurssion. For each call
of the function a seperate set of Local variables, Formal
parameters and return address are stored at stack area.
| Is This Answer Correct ? | 0 Yes | 3 No |
What are header files why are they important?
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
how 2 compile & execute c program with out using editor?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What does the file stdio.h contain?
inline function is there in c language?
What are the types of operators in c?
What is the 'named constructor idiom'?
Explain what is wrong with this statement? Myname = ?robin?;
What is the main differences between C and Embedded C?
What is meant by type specifiers?
what is meant by the "equivalence of pointers and arrays" in C?