C Program to Access Array Elements Using Pointer

Accessing array elements using pointers is a fundamental concept in C programming. Pointers provide an efficient way to manipulate and access array elements. In this article, we will explore three different C Program to Access Array Elements Using Pointer, each demonstrated with example code and outputs.

Prerequisites

Before we delve into the code examples, make sure you have the following prerequisites:

  • Basic understanding of C programming.
  • Familiarity with arrays and pointers in C.
  • A C compiler installed on your system (e.g., GCC).

Solution 1: Simple Pointer Arithmetic

1.1 Explanation

In this solution, we will use simple pointer arithmetic to access array elements. Pointer arithmetic allows us to iterate over array elements by incrementing the pointer.

1.2 Program

C
#include <stdio.h>

int main() {
    int arr[5] = {10, 20, 30, 40, 50};
    int *ptr = arr;

    printf("Array elements using pointer arithmetic:\n");
    for (int i = 0; i < 5; i++) {
        printf("%d ", *(ptr + i));
    }
    printf("\n");

    return 0;
}

1.3 Output

C
Array elements using pointer arithmetic:
10 20 30 40 50

Solution 2: Accessing Array Elements via Pointer in Function

2.1 Explanation

In this solution, we will pass the array to a function via a pointer and access the array elements inside the function. This approach is useful for modularizing code and reusing functions.

2.2 Program

C
#include <stdio.h>

void printArray(int *ptr, int size) {
    printf("Array elements inside function:\n");
    for (int i = 0; i < size; i++) {
        printf("%d ", *(ptr + i));
    }
    printf("\n");
}

int main() {
    int arr[5] = {10, 20, 30, 40, 50};

    printArray(arr, 5);

    return 0;
}

Output

C
Array elements inside function:
10 20 30 40 50

Solution 3: Using Pointer to Array

3.1 Explanation

In this solution, we will use a pointer to an entire array to access its elements. This method is particularly useful when dealing with multi-dimensional arrays.

3.2 Program

C
#include <stdio.h>

void printArray(int (*ptr)[5], int size) {
    printf("Array elements using pointer to array:\n");
    for (int i = 0; i < size; i++) {
        printf("%d ", (*ptr)[i]);
    }
    printf("\n");
}

int main() {
    int arr[5] = {10, 20, 30, 40, 50};
    printArray(&arr, 5);

    return 0;
}

Output

C
Array elements using pointer to array:
10 20 30 40 50

Conclusion

Accessing array elements using pointers in C can be done in various ways, each suited for different scenarios. The simple pointer arithmetic approach is straightforward and easy to understand. Passing an array to a function via a pointer helps modularize the code and enhances reusability. Using a pointer to an entire array is particularly useful for handling multi-dimensional arrays.

By understanding these methods, you can efficiently manipulate and access array elements in C programming, enabling you to write more flexible and efficient code. Experiment with these approaches to deepen your understanding of pointers and arrays in C.