[Solved] Finding maximum sum possible of two numbers in array
As per assuming few conditions like provided array size and array data type to be integer you can use the following program for reference. This program takes the no. of elements and array as input. #include<stdio.h> #include<limits.h> int main(){ int n; int a[100]; printf(“Size of the array:”); scanf(“%d”, &n); for(int i = 0; i < … Read more