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 the auto keyword good for?
Explain how can a program be made to print the name of a source file where an error occurs?
Is this program statement valid? INT = 10.50;
Explain the use of bit fieild.
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
How do you use a 'Local Block'?
Explain how can I write functions that take a variable number of arguments?
Why can't I perform arithmetic on a void* pointer?
In C, What is the #line used for?
What is header file definition?
how is the examination pattern?
Compare interpreters and compilers.
What does do in c?
Write a program to swap two numbers without using third variable in c?
What does sizeof return c?