Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why address of a variable change after each execution in C?

int i=10;
printf("Address of i = %u",&i);

Output:
Address if i = 3220204848

Output on re-execution:
Address of i = 3216532594

I get a new address of i each time I execute the program. What does this signify?

like image 810
Mohit Avatar asked May 17 '10 04:05

Mohit


3 Answers

It signifies that your program is being loaded a different (virtual) address each time you run it. This is a feature called Address Space Layout Randomization (ASLR) and is a feature of most modern operating systems.

like image 97
Dean Harding Avatar answered Nov 15 '22 09:11

Dean Harding


That's how operating systems work. When you declare a variable, you're asking the underlying systems to allocate a memory block (address) to store that data (or a pointer to another block if you're dealing with pointers, but here you've got a primitive, so it's just data being stored). The program doesn't care where the memory is, just that it exists, because it knows how to keep track of whatever it's given.

As the programmer, this really isn't that big of a deal unless you're doing some incredibly low-level work. The hardest part of this to really grasp, for most people, is that when you work with pointers, you can't equate things the same way you can primitives, because pointers consider their values (when using == as an equator) to be their memory addresses.

like image 43
Jason B Avatar answered Nov 15 '22 07:11

Jason B


Disable ASLR using:

echo 0 | sudo tee /proc/sys/kernel/randomize_va_space

You will always see the same address.

like image 21
bhasker pratap singh Avatar answered Nov 15 '22 09:11

bhasker pratap singh