C++ Program to Find Highest and Lowest Element of a Matrix

Here you will get a C++ program to find highest or largest and lowest or smallest element of a matrix.
Output
Enter no. of rows and columns:3
3

Enter matrix:
3 5 9
15 6 0
12 4 7

Highest Element:15
Lowest Element:0

Leave a Comment

Your email address will not be published. Required fields are marked *