×

Pointer arithmetic in C

In the C programming language, a pointer is an address which stores a numeric value. Hence, a developer can perform several arithmetic operations on the same just as one does on other numerical values. In the concept of arithmetic pointers, four operators can be used such as ++, --, +, and -.

The compiler will allow the user to perform arithmetic operations on pointers which are stored as an alias to a numerical value. Conducting operators using the operators and pointer variables is referred to as an arithmetic pointer.

Since pointers store the address of other variables, they are termed as address data types. These addresses are the memory locations that will be assigned to specific variables, and it never stores any value.

As mentioned, there are few operations allowed within an arithmetic pointer, and these operations differ from those generally used in mathematics.

1. Increment of a pointer: it is a condition that comes under addition. Every time a pointer is incremented, it increments by the number equal to the size of the data type present.

E.g.:

If an integer pointer that stores address 1000 is incremented, then it will increment by 2(size of an int), and the new address will point to 1002. While if a float type pointer is incremented, then it will increment by 4(size of a float), and the new address will be 1004.

#include <stdio.h>
const int MAX = 3;
int main () 
{
int  var[] = {10, 100, 200};
int  i, *ptr;


/* let us have array address in pointer */
ptr = var;


for ( i = 0; i < MAX; i++) 
{
printf("Address of var[%d] = %x\n", i, ptr );
printf("Value of var[%d] = %d\n", i, *ptr );


/* move to the next location */
ptr++;
}


return 0;
}

Output:

Address of var[0] = 9f8312cc
Value of var[0] = 10
Address of var[1] = 9f8312d0
Value of var[1] = 100
Address of var[2] = 9f8312d4
Value of var[2] = 200

2. Decrement of a pointer: It is a condition that also comes under subtraction. When a pointer is decremented, it decrements by the number equal to the size of the data type for which it is a pointer.

E.g.:

If an integer pointer that stores address 1000 is decremented, then it will decrement by 2(size of an int), and the new address will point to 998. While if a float type pointer is decremented, then it will decrement by 4(size of a float),And the new address will be 996.

Address of var[0] = 9f8312cc
Value of var[0] = 10
Address of var[1] = 9f8312d0
Value of var[1] = 100
Address of var[2] = 9f8312d4
Value of var[2] = 200


2.	Decrement of a pointer: It is a condition that also comes under subtraction. When a pointer is decremented, it decrements by the number equal to the size of the data type for which it is a pointer.
E.g.:
If an integer pointer that stores address 1000 is decremented, then it will decrement by 2(size of an int), and the new address will point to 998. While if a float type pointer is decremented, then it will decrement by 4(size of a float),And the new address will be 996.
#include <stdio.h>
const int MAX = 3;
int main () 
{


int  var[] = {10, 100, 200};
int  i, *ptr;


/* let us have array address in pointer */
ptr = &var[MAX-1];


for ( i = MAX; i > 0; i--) 
{


printf("Address of var[%d] = %x\n", i-1, ptr );
printf("Value of var[%d] = %d\n", i-1, *ptr );


/* move to the previous location */
ptr--;
}


return 0;
}

Output:

Address of var[2] = 9f3bb4a4
Value of var[2] = 200
Address of var[1] = 9f3bb4a0
Value of var[1] = 100
Address of var[0] = 9f3bb49c
Value of var[0] = 10

3. Addition of an integer to a pointer: when the pointer is added with a value, this value is then multiplied by the size of the data type and is then added to the pointer.

E.g.:

#include <stdio.h>
int main()
{
	int N = 4;
	int *ptr1, *ptr2;
	ptr1 = &N;
	ptr2 = &N;


	printf("Pointer ptr2 before Addition: ");
	printf("%p \n", ptr2);


	ptr2 = ptr2 + 3;
	printf("Pointer ptr2 after Addition: ");
	printf("%p \n", ptr2);


	return 0;
}

Output:

Pointer ptr2 before Addition: 0x7ffeb89a3bf4 
Pointer ptr2 after Addition: 0x7ffeb89a3c00 

4. Subtraction of integer from a pointer: when the pointer is subtracted with a value, this value is then multiplied by the size of the data type and is then subtracted to the pointer.

E.g.:

#include <stdio.h>
int main()
{
int N = 4;
int *ptr1, *ptr2;
ptr1 = &N;
ptr2 = &N;


printf("Pointer ptr2 before Subtraction: ");
printf("%p \n", ptr2);


ptr2 = ptr2 - 3;
printf("Pointer ptr2 after Subtraction: ");
printf("%p \n", ptr2);


return 0;
}

Output:

Pointer ptr2 before Subtraction: 0x7fffb534a334 
Pointer ptr2 after Subtraction: 0x7fffb534a328 

5. Comparisons of pointers: pointers and other pointers can be compared using some operators known as relational operators such as ==, <, and >.

E.g.:

#include <stdio.h>
const int MAX = 3;
int main () 
{
int  var[] = {10, 100, 200};
int  i, *ptr;
ptr = var;
i = 0;


while ( ptr <= &var[MAX - 1] ) 
{
printf("Address of var[%d] = %x\n", i, ptr );
printf("Value of var[%d] = %d\n", i, *ptr );
ptr++;
i++;
}


return 0;
}

Output:

Address of var[0] = e7e7612c
Value of var[0] = 10
Address of var[1] = e7e76130
Value of var[1] = 100
Address of var[2] = e7e76134
Value of var[2] = 200

Related Topics

Storage Class in C

C storage class is used to define the scope variables and function. There are four various types of storage classes that are given below. auto: The auto keyword is the default...

1 minute read.

C –Structure

C structure is a collection of different types of data that is grouped together. It is used to represent records.Structkeyword is used to create a structure. Each element of a...

1 minute read.

Fseek Function in C

The fseek function is a function in the C standard library that changes the position of the file pointer in a stream-oriented file. It is typically used to move the...

3 minutes read.

Decimal to Hexadecimal in C

Decimal to Hexadecimal in C Let us first understand the definitions of decimal and hexadecimal. In algebra, a decimal number is defined as a number whose whole number part and a...

3 minutes read.

C Program to find the size of a File

Before knowing about the Program, you need to understand what the size of a file is. After that, you should know how it is going to work with the given...

4 minutes read.

Bit Stuffing Program in C

What is a Bit Stuffing? The process of inserting one or more extra bits (0) into data is known as bit stuffing. To provide signalling information to a recipient, these are...

3 minutes read.

Caesar Cipher Program in C

What is Caesar Cipher? The Caesar Cipher is a type of substitution cipher that is named after Julius Caesar, who is said to have used it to encrypt messages sent to...

2 minutes read.

C printf and Scanf

Input-Output functions in C Programming In C Language, the printf() and scanf() are inbuilt library functions that used for input and output. It is defined in the header file“<stdio.h>”. printf() Function: In C...

2 minutes read.

Limitations of Synchronisation and Uses of Static Synchronisation in Multithreading

The multithreading component of java is the element around which the idea rotates as it permits simultaneous execution of at least two program pieces for the most significant usage of...

9 minutes read.

Union in C

Union is a user-defined data type that is used to hold the different types of elements like structure. In union, all members share the same memory location. Syntax: union [union name] { ...

1 minute read.

Character Class Tests in C

Introduction The <ctype.h> is a header file in C which is used to declare functions for testing characters. This header file of the C standard library is used to declare multiple...

4 minutes read.

C program that does not Suspend when Ctrl+Z is Pressed

In Programming when a program breakdown and runs surprisingly in the terminal compiler the developer has the ability to prevent the program from running unequivocally. For expressly halting the program,...

3 minutes read.

Decimal to Binary in C

What is a decimal number? A decimal number is a number represented in the decimal number system. This system of binary conversion uses base 10 to represent numbers, i.e. the digits...

3 minutes read.

File Operations in C

Why do I need the file? All data will be lost when the program exits. Saving data to a file keeps it safe even if the program stops working. If there...

6 minutes read.

Fibonacci series in C

We have learned about the Fibonacci series in mathematics. For a quick recap, A Fibonacci series is the sequence of numbers following a certain pattern i.e., the next number should...

3 minutes read.

Star Program in C Language

Star Program in C Star patterns are a sequence of * or any other character used to construct any pattern or any like-square geometric form, triangle, hollow square, pyramid, rhombus, etc.  Many programmers worldwide highly...

4 minutes read.

Builtin functions of GCC compiler

Certain built-in functions are present in the GCC compiler. These features are as follows: Function_ built in_popcount (x) The number of 1s in data of the integer type can be counted using...

3 minutes read.

Floor() Function in C

Floor() function is a built-in function in C which is defined in the math.h header file. This function is used to return the nearest integer value which is less than...

4 minutes read.

memcpy() in C

Introduction: Here we discuss about the memcpy() function in C. The memcpy() function is also called the Copy Memory Block function. Used to create a copy of a specific drawing...

4 minutes read.

Double Specifier in C

What is a double specifier? The term double denotes the double data type in C. It more accurately depicts floating point numbers. The idea that it has twice the precision of...

3 minutes read.