In this article we will learn to implement a C program to reverse an array in place using pointers. A C program is provided below to reverse the given array in place using pointers. Program is as follows: #include<stdio.h> void reversearray(int *p, int n) { int *first = p; int *last = p+n-1; while(first<last) { […]