swapping of two numbers without using third variable using
AND and OR operators
Answers were Sorted based on User's Feedback
Answer / ramesh reddy
a = a^b; b =a^b; a =a^b;
or
a=a+b; b=a-b; a=a-b;
| Is This Answer Correct ? | 43 Yes | 2 No |
however we can implement using EXoR , where it is made of
AND and OR gate too....
x=90;
y=51;
x^=y^=x;
the value of x & y will be swapped.
| Is This Answer Correct ? | 8 Yes | 8 No |
differentiate built-in functions and user – defined functions.
Do pointers store the address of value or the actual value of a variable?
Suggesting that there can be 62 seconds in a minute?
Why c is called a middle level language?
is it possible to change the default calling convention in c ?
Write a program in c to input a 5 digit number and print it in words.
What is cohesion and coupling in c?
hi , please send me NIC written test papers to sbabavalli@gmail.com
code for copying two strings with out strcpy() function.
Can we access the array using a pointer in c language?
Can you write a programmer for FACTORIAL using recursion?
Can anyone tell what is stack overflow? what precaution we should take?