Posts

Showing posts with the label Array Programs

Remove duplicate elements from unsorted array

Simple C program to remove duplicates from array.

Remove duplicates from a sorted array

Given a sorted array and remove duplicates from array. Simple C program to remove duplicates from array.

Find out second largest element in array C program

Find second largest element in given array. For example if arr is {2,6,3,12,7,9,4} then second largest element is 9 . Our task is find out this element.