Pointer Arithmetic in C

Introduction to Pointer Arithmetic in C

Pointer arithmetic is a powerful feature of the C programming language that allows you to perform arithmetic operations on pointers. It provides a convenient way to manipulate memory addresses and access data structures efficiently. In this article, we will explore the basics of pointer arithmetic and its usage in C.

Understanding Pointers

Before diving into pointer arithmetic, it’s important to have a clear understanding of pointers. In C, a pointer is a variable that stores the memory address of another variable. It allows you to indirectly access and modify the value of the variable it points to.

For example, consider the following code:


int num = 10;
int *ptr = #

In this code, we have declared an integer variable num and a pointer variable ptr. The & operator is used to get the address of the num variable, which is then assigned to the ptr variable.

Pointer Arithmetic Operations

Once you have a pointer, you can perform arithmetic operations on it. The following arithmetic operations are supported:

  • Increment: Adding an integer value to a pointer moves it to the next memory location. For example, ptr++ will move the pointer to the next integer-sized memory location.
  • Decrement: Subtracting an integer value from a pointer moves it to the previous memory location. For example, ptr-- will move the pointer to the previous integer-sized memory location.
  • Addition: Adding an integer value to a pointer moves it forward by the specified number of elements. For example, ptr + n will move the pointer n elements forward.
  • Subtraction: Subtracting an integer value from a pointer moves it backward by the specified number of elements. For example, ptr - n will move the pointer n elements backward.
  • Comparison: Pointers can be compared using relational operators such as ==, !=, <, >, <=, and >=. These comparisons are based on the memory addresses the pointers hold.

It’s important to note that pointer arithmetic is only valid when used with pointers that point to elements within the same array or memory block. Performing arithmetic operations on unrelated pointers or pointers that do not point to elements within the same array can lead to undefined behavior.

Example Usage

Let’s consider an example to illustrate the usage of pointer arithmetic:


int numbers[] = {1, 2, 3, 4, 5};
int *ptr = numbers;

for (int i = 0; i < 5; i++) {
    printf("Element %d: %dn", i, *ptr);
    ptr++;
}

In this code, we have an integer array numbers and a pointer ptr that initially points to the first element of the array. Inside the loop, we print the value of the element pointed to by ptr and then increment the pointer to move to the next element.

The output of this code will be:


Element 0: 1
Element 1: 2
Element 2: 3
Element 3: 4
Element 4: 5

As you can see, by incrementing the pointer, we were able to access each element of the array sequentially.

Pointer arithmetic is a powerful feature in C that allows you to manipulate memory addresses and access data structures efficiently. By understanding the basics of pointer arithmetic and its operations, you can write more efficient and concise code. However, it’s important to use pointer arithmetic with caution and ensure that it is used correctly to avoid any potential issues or undefined behavior.

Scroll to Top