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 / sumanth
firt do sum of n elements in first array a i.e., n(n+1)/2
next the sum of n-1 elements in second array b i.e., n(n-1)/2...
from diff of these 2 sums we will get the missing element in b
Is This Answer Correct ? | 30 Yes | 11 No |
Post New Answer View All Answers
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What is getch () for?
Can a local variable be volatile in c?
How to write a multi-statement macro?
How many types of operators are there in c?
What are the characteristics of arrays in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
How many types of sorting are there in c?
What is a far pointer in c?
Why is c known as a mother language?
What is exit() function?
What is pointer to pointer in c language?
What are the different types of linkage exist in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is the difference between fread and fwrite function?