Generally variables are stored in heap memory. When he
variables are created in stack?
Answers were Sorted based on User's Feedback
Answer / vadivelt
It is wrong to say that genarally variables will be stored
in heap memmory.
Bcos Storage area always depends on the storage class of
the variable.
According to the C standard the storage will be.
1.variable with storage class 'auto' ie., local to the
function - in stack memory.
2.variable with storage class 'extern' and 'static' in data
segment.
3.variable with storage class 'register' in processor
register. But this register variable will be treated as
auto when there is no enough memory in the processor.
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / rohit repale
It is wrong to say that genarally variables will be stored
in heap memmory.
Bcos Storage area always depends on the storage class of
the variable.
If the variables are created by new i.e. dynamic memory is
created then it use heap memory.
static & extern variables are stored in static memory.
And other normal variables are stored in stack.
| Is This Answer Correct ? | 3 Yes | 0 No |
According to the C standard the storage will be.
1.variable with storage class 'auto' ie., local to the
function - in stack memory.
2.variable with storage class when 'extern' and 'static' are initialized stored in data segment otherwise found in bss.
3.variable with storage class 'register' in processor
register. But this register variable will be treated as
auto when there is no enough memory in the processor.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rahul
I am not sure about this answer but when you pass any
argument to any recursive or non-recursive function.
| Is This Answer Correct ? | 1 Yes | 1 No |
What are static type checking?
Why is c++ awesome?
Define token in c++.
What is the purpose of templates in c++?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
What is data structure in c++?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
In java a final class is a class that cannot be derived. How can you make a similar class in C++
Definition of class?
What does iomanip mean in c++?
Can we declare a base-class destructor as virtual?