Answer Posted / guest
alloca() allocates memory which is automatically freed when
the function which called alloca() returns. alloca() cannot
be written portably, is difficult to implement on machines
without a stack, and fails under certain conditions if
implemented simply.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Explain zero based addressing.
How many types of operator or there in c?
What is a newline escape sequence?
What do mean by network ?
What does 4d mean in c?
Write a simple code fragment that will check if a number is positive or negative.
Do you know the difference between malloc() and calloc() function?
What is a macro, and explain how do you use it?
How can a program be made to print the line number where an error occurs?
Why header files are used?
Explain what is the most efficient way to store flag values?
What is pointer and structure in c?
What is the meaning of typedef struct in c?
Why is not a pointer null after calling free?
Write the Program to reverse a string using pointers.