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 / brijesh
the question says that we have to find the element which is
not there in array b but there in array a. So we can just
compare each element in a with all the elements in b and if
we don't find a match then that is the desired element.
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
What is scope of variable in c?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is the difference between union and anonymous union?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
How can I automatically locate a programs configuration files in the same directory as the executable?
What is huge pointer in c?
What is sizeof return in c?
Does c have an equivalent to pascals with statement?
Differentiate between a structure and a union.
What is an array? What the different types of arrays in c?
Can a variable be both constant and volatile?
What is the purpose of clrscr () printf () and getch ()?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Explain what happens if you free a pointer twice?
Explain the use of fflush() function?