if array a conatins 'n' elements and array b conatins 'n-1'
elements.array b has all element which are present in array
a but one element is missing in array b. find that
element.
Answer Posted / ajnr
if and only if it is a sorted array which consists of nos
and the elements compare have the same index no. then the
element missing in array 'b' will obviously be the 'nth'
element of array 'a'...... but this is true if the above
conditions are satisfied
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Which header file should you include if you are to develop a function which can accept variable number of arguments?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What are data types in c language?
Do pointers take up memory?
Write a program to reverse a given number in c language?
What is pragma c?
What is zero based addressing?
what is a constant pointer in C
The file stdio.h, what does it contain?
What are local static variables? How can you use them?
difference between native and cross compilers
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Explain what does the function toupper() do?
Are pointers integer?