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 / ankith.v
Zero th element
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is %lu in c?
Why doesnt that code work?
When do we get logical errors?
What is const volatile variable in c?
What is assert and when would I use it?
What are the Advantages of using macro
When should a type cast not be used?
What is NULL pointer?
What is the method to save data in stack data structure type?
What header files do I need in order to define the standard library functions I use?
What is the description for syntax errors?
Is c still used?
Can you subtract pointers from each other? Why would you?
Explain how many levels deep can include files be nested?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none