Greatest number that can be formed from a pair in a given Array
Given an array arr[], the task is to find the largest number that can be formed from a pair in the given array.Examples: Input: arr[] = { 3, 1, 9, 2 } Output: 93 The pair (3, 9) leads to forming of maximum number 93Input: arr[] = { 23, 14, 16, 25, 3, 9 } Output: 2523 The pair (23, 25) leads to formi