Write C++ program to find maximum and minimum element in array
Introduction I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability. #include <iostream> #define MAX_SIZE 100 //Maximum size of the array using namespace std; ...