Why the use of alloca() is discouraged?

Answers were Sorted based on User's Feedback



Why the use of alloca() is discouraged? ..

Answer / johnson

Sorry, that is not strictly correct. According to the man page:

"The alloca() function allocates size bytes of space in the
stack frame of the caller, and returns a pointer to the
allocated block. This temporary space is automatically freed
when the caller returns."

Now this is the real reason:
" If the allocated block is beyond the current stack limit,
the resulting behavior is undefined."

Is This Answer Correct ?    12 Yes 0 No

Why the use of alloca() is discouraged? ..

Answer / sathish kumar

Hi All,

If you use alloca inside a function when it retuns from
function it will be resulting in memory leak. Thats why
its discouraged to use.

Thanks & Regards
Sathish Kumar

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More C Interview Questions

How many types of operators are there in c?

0 Answers  


Why is it that not all header files are declared in every C program?

0 Answers  


How can I access memory located at a certain address?

3 Answers   Verizon,


how many times of error occur in C

11 Answers  


What are called c variables?

0 Answers  


x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????

3 Answers  


what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175

5 Answers   Wipro,


Are comments included during the compilation stage and placed in the EXE file as well?

0 Answers  


What is the role of && operator in a program code?

0 Answers  


Write a program to implement queue.

0 Answers   Aricent,


what is ANSI and ISO

7 Answers   HCL,


c language interview questions & answer

0 Answers  


Categories