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 the size of a union variable?
How many levels deep can include files be nested?
What are register variables in c?
Are pointers integers in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
How a string is stored in c?
write a program to find out prime number using sieve case?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the symbol indicated the c-preprocessor?
Not all reserved words are written in lowercase. TRUE or FALSE?
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
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
writ a program to compare using strcmp VIVA and viva with its output.
What is calloc()?
Why void is used in c?