i have MxN matrix, i need search elements which are more than value 'T' THAT IS . IF 'T'=5 THEN OUTPUT SHOULD BE CO-ORDINATES OF EACH ELEMENT which have value more than or equal to (>=) '5' IN the MxN MATRIX
example let us we have 3X4 matrix
1 2 6 14 3 1 0 1 0 5 1
the output should be coordinates of element 6-(3,3), coordinates of element 5-(1,3) plz help in coding
Best Answer