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 does the error message "DGROUP exceeds 64K" mean?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Why do some versions of toupper act strangely if given an upper-case letter?
what is the difference between class and unio?
What does *p++ do? What does it point to?
Explain how can you avoid including a header more than once?
please send me the code for multiplying sparse matrix using c
When a c file is executed there are many files that are automatically opened what are they files?
How are Structure passing and returning implemented by the complier?
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:
What is #include stdio h?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Function calling procedures? and their differences? Why should one go for Call by Reference?
Explain why c is faster than c++?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration