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
Describe the difference between = and == symbols in c programming?
Where we use clrscr in c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What 'lex' does?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What is a dynamic array in c?
Why doesnt this code work?
What does a function declared as pascal do differently?
What is string length in c?
simple program of graphics and their output display
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What is the method to save data in stack data structure type?
What are local static variables? How can you use them?