Update searching_of_element_in_dynamic_Array.cpp

This commit is contained in:
faizan Ahamed 2020-04-21 01:12:58 +05:30 committed by GitHub
parent db53fd1cf7
commit 15146a35fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ std::cout << "enter the number of row which element You want to find :";
std::cin >> r1;
r1 = r1 - 1;
std::cout << "enter the position of element which You want to find :";
std::cin>> q1;
std::cin >> q1;
q1 = q1 - 1;
// use this to find desire position of element in desire array
std::cout <<"The element is "<< ar[r1][q1] <<std::endl;