Can anyone tell what is stack overflow? what precaution we
should take?



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

Post New Answer

More C Interview Questions

How many types of operators are there in c?

0 Answers  


C passes By value or By reference?

5 Answers   Geometric Software, Infosys,


What is main return c?

0 Answers  


declare afunction pointer to int printf(char *)?

1 Answers   HCL,


1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.

2 Answers  


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


without using arithmatic operator solve which number is greater??????????

1 Answers   Accenture,


Is struct oop?

0 Answers  


C program to find all possible outcomes of a dice?

0 Answers  


WHAT IS MEANT BY LIFE?

2 Answers  


What are the __date__ and __time__ preprocessor commands?

0 Answers  


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

0 Answers   TCS,


Categories