tccicomputercoaching.com
In programming language we need memory to store data. The data stores in Stack and Heap memory according to local and global data.What is Stack and Heap? Let us see.
definition:
Stack:
It's a special region of your computer's memory that stores temporary variables created by each function (including the
main()
function).
When to use stack?
· You would use the stack if you know exactly how much data you need to allocate before compile time and it is not too big.
Heap:
The heap is a region of your computer's memory that is not managed automatically.
When to use Heap?
· You would use the heap if you don't know exactly how much data you will need at run time or if you need to allocate a lot of data.
which one faster?
The stack is faster because the access pattern makes it trivial to allocate and deallocate memory from it (a pointer/integer is simply incremented or decremented), while the heap has much more complex bookkeeping involved in an allocation or free.
The Heap
The heap is a region of your computer's memory that is not managed automatically for you, and is not as tightly managed by the CPU. It is a more free-floating region of memory (and is larger). To allocate memory on the heap, you must usemalloc()
or calloc()
,
which are built-in C functions. Once you have allocated memory on the heap,
you are responsible for using free()
to deallocate that memory
once you don't need it any more. If you fail to do this, your program will
have what is known as a memory leak. That is, memory on
the heap will still be set aside (and won't be available to other
processes). As we will see in the debugging section, there is a tool called valgrind
that can help you
detect memory leaks.
Unlike the stack, the heap does not have size restrictions on variable size (apart from the obvious physical limitations of your computer). Heap memory is slightly slower to be read from and written to, because one has to use pointers to access memory on the heap. We will talk about pointers shortly.
Unlike the stack, variables created on the heap are accessible by any function, anywhere in your program. Heap variables are essentially global in scope.
Examples
Here is a short program that creates its variables on the stack. It looks like the other programs we have seen so far.#include <stdio.h>
double multiplyByTwo (double input) {
double twice = input * 2.0;
return twice;
}
int main (int argc, char *argv[])
{
int age = 30;
double salary = 12345.67;
double myList[3] = {1.2, 2.3, 3.4};
printf("double your salary is %.3f\n", multiplyByTwo(salary));
return 0;
}
double your salary is 24691.340
Stack | Heap |
· It's a special region of your computer's memory that
stores temporary variables created by each function
(including the main() function).
|
· The heap is a region of your computer's memory that is not managed automatically for you, and is not as tightly managed by the CPU. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
To learn more about Programming
Visit us @ tccicomputercoaching.com
Call us @ 98256 18292.
No comments:
Post a Comment