How to compare one row with the other ones to see if that row has a match into a 2D array and if there is any match, display it . It is this possible to do it? example:
row 1 = row 5
How can I check this equality?
Thanks for any explanation.
Code:
int*array[rows][cols]*=*{{2,4,5,7,8},{1,3,5,7,8},{3,4,5,7,8},
*************************** *{4,6,7,8,9},{2,4,5,7,8}};
How can I check this equality?
Thanks for any explanation.
Comment