Back
Close

How to play with pointers in C

Donotalo
319.3K views
Next: A Pointer Is A Variable

A program being executed by a processor has two major parts - the code and the data. The code section is the code you've written and the data section holds the variables you're using in the program.

All code and variables are loaded into memory (usually RAM) and the processor executes the code from there. Each segment (usually a byte) in the memory has an address - whether it holds code or variable - that's the way for the processor to access the code and variables.

For example, consider a simple program of adding two numbers. When the program will run the processor will save these two numbers in two different memory locations. Adding these numbers can be achieved by adding the contents of two different memory locations.

A memory location where data is stored is the address of that data. In C address of a variable can be obtained by prepending the character & to a variable name. Try the following program where a is a variable and &a is its address:

To output address of a variable, %p format specifier is used. How %p will display an address is implementation defined. It means that the output of %p could vary from compiler to compiler.

An address is a non-negative integer. Each time a program is run the variables may or may not be located in same memory locations. Each time you run the program above may or may not result in the same output. But for a specific instance of the running program (also known as process) the variables in the same scope will always have same address.

Try the following program:

Notice that the addresses of a, b and c variables are same before and after the modification.

However, if the variables are in different scope then the addresses may or may not be the same in different execution of that scope. For example, consider the following program where f() is called once from main() and then from g(). Each call to f() produces a different scope for its parameter p.

Now &p (address of p) may or may not be the same for every call to f().

When f() is called from main() a and p are strictly two different variables. They are allocated in different memory locations. Therefore address of a and address of p will never be the same (&a != &p). When g() is called from main() the same is true for a and r. They live in the same time in different addresses. When f() is called from g(), then &r != &p because they both live at the same time. But when f() is called from outside g(), there is no relation between &r and &p - they could be same or different.

Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io