how to swap 4 number without using temporary number?
Answer Posted / brinda balakrishnan
a=a+b+c+d;
b=a-(b+c+d);
c=a-(b+c+d);
d=a-(b+c+d);
a=a-(b+c+d);
| Is This Answer Correct ? | 25 Yes | 0 No |
Post New Answer View All Answers
Suggesting that there can be 62 seconds in a minute?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What is the difference between call by value and call by reference in c?
What is calloc malloc realloc in c?
what is use of malloc and calloc?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is difference between far and near pointers?
what is the height of tree if leaf node is at level 3. please explain
Do pointers need to be initialized?
What is a good data structure to use for storing lines of text?
What is this infamous null pointer, anyway?
How can I avoid the abort, retry, fail messages?
What is meant by errors and debugging?
What functions are used in dynamic memory allocation in c?