A mXn matrix is given and rows and column are sorted as
shown below.Write a function that search a desired entered
no in the matrix .with minimum complexity
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
No Answer is Posted For this Question
Be the First to Post Answer
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
State two differences between C and C++.
What is == in programming?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
How does class accomplish data hiding in c++?
How do you declare A pointer to a function which receives nothing and returns nothing
Explain the need for "Virtual Destructor"?
When is the copy constructor called?
what is oops
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
give me some class & objects examples?
Explain the different access specifiers for the class member in c++.