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 / bhavik
It is not true that there is a[0] missing.
Because as per my knowledge array is starting from a[0] and
running up to a[n] continuously.
But if my ans is wrong then sorry and please send me right ans.
| Is This Answer Correct ? | 6 Yes | 12 No |
Post New Answer View All Answers
What is a constant?
How can I discover how many arguments a function was actually called with?
What is bss in c?
What is %lu in c?
What is omp_num_threads?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is a file descriptor in c?
What is the use of define in c?
Explain what is wrong with this statement? Myname = ?robin?;
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
How will you divide two numbers in a MACRO?