Pointer

Pointer

A pointer is a variable that stores the memory address of another variable. Pointers provide a way to manipulate and access memory directly, which can be useful for tasks such as dynamic memory allocation, passing parameters by reference, and implementing data structures such as linked lists.        

  To declare a pointer variable in C, you use the asterisk (*) symbol before the variable name. For example, to declare a pointer to an integer variable, you can use the following syntax:

				
					int *ptr; 
				
			

This declares a pointer variable named ptr that can hold the memory address of an integer variable.

To assign a value to a pointer, you can use the address-of operator (&) to get the memory address of a variable. For example:

				
					int x = 10;  
int *ptr = &x; 

				
			

This assigns the memory address of the x variable to the ptr pointer.

To access the value stored in the memory location pointed to by a pointer, you can use the dereference operator (*) to retrieve the value at the memory address. For example:

				
					int x = 10;
 int *ptr = &x;
 printf("The value of x is %d\n", *ptr);     

				
			

 // Outputs: The value of x is 10

This retrieves the value stored in the memory location pointed to by ptr, which is the value of x.                                        

Pointer arithmetic is also possible in C. You can add an integer value to a pointer to move it to a different memory address. For example:

				
					int arr[5] = {1, 2, 3, 4, 5};
 int *ptr = &arr[0];                      // points to the first element of the array      
ptr++;                  // move the pointer to the second element of the array
 printf("The value of the second element is %d\n", *ptr);
                                        // Outputs: The value of the second element is 2 

				
			

This moves the ptr pointer to point to the second element of the arr array, and retrieves the value stored at that memory location.

Null Pointer

A null pointer is a special pointer value that is used to indicate that a pointer does not point to a valid memory address. In C, a null pointer is represented by the literal constant NULL, which is typically defined as follows:

				
					#define NULL ((void *)0) 
				
			

This definition sets the value of a null pointer to zero, which is not a valid memory address.

Using a null pointer in C can be useful for indicating the absence of a valid pointer value, or for initializing a pointer variable to a known invalid value. For example:

				
					int *ptr = NULL;          // initialize the pointer to a null pointer value
if (ptr == NULL)
 {
printf("The pointer is null.\n");
} 
else
 {  
                         // do something with the pointer
}

				
			

This checks whether the ptr pointer is null, and prints a message indicating that the pointer is null if it is.

Pointers  and  Array

In C, arrays and pointers are closely related concepts. In fact, an array can be thought of as a sequence of contiguous memory locations, and a pointer can be used to point to the first element of the array.

When you declare an array in C, you can use the array name as a pointer to the first element of the array. For example, if you declare an array of integers as follows:

				
					int arr[5] = {1, 2, 3, 4, 5}; 
				
			

You can use the arr array name as a pointer to the first element of the array. For example, the following code retrieves the value of the first element of the array using the arr pointer:

				
					int *ptr = arr; 
printf("The value of the first element is %d\n", *ptr);                                      // Outputs: The value of the first element is 1                                            

				
			

This initializes a pointer variable named ptr to point to the first element of the arr array, and retrieves the value stored in that memory location.

You can also use pointer arithmetic to access other elements of the array. For example, the following code retrieves the value of the second element of the array:

				
					int *ptr = arr;
 ptr++;                 // move the pointer to the second element of the array printf("The value of the second element is %d\n", *ptr);                                                                                                                                         //Outputs: The value of the second element is 2 

				
			

This moves the ptr pointer to point to the second element of the arr array, and retrieves the value stored in that memory location.

Note that when you use an array name as a pointer, you cannot change the address that it points to. For example, the following code is not allowed:

				
					int arr[5] = {1, 2, 3, 4, 5};
 int *ptr = arr; ptr++;                                 // This is allowed 
arr++;                                                          // This is not allowed 

				
			

This is because the arr pointer is a constant pointer that is automatically set to point to the first element of the array, and you cannot change the address that it points to.

Join To Get Our Newsletter
Spread the love