what is the use of operator ^ in C ? and how it works?
Answers were Sorted based on User's Feedback
Answer / vinay sachan
exclusive OR ^ is a bitwise operator known as (left assoc).
expr1 ^ expr2
ex.
0x12 ^ 0x58
returns 0x4A (the set bits in the result are those that are set in either 0x12 or 0x58, but not set in both).
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / rahul mathur
^ is a exclusive OR bitwise operator.
We can use this "^" operator for swaping two values without
using third variable and without using +, - operator as
shown below:
void xorSwap (int *x, int *y) {
if (x != y) {
*x ^= *y;
*y ^= *x;
*x ^= *y;
}
}
Is This Answer Correct ? | 4 Yes | 0 No |
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What is the function of volatile in c language?
mplementation of stack using any programing language
What is extern storage class in c?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?
Write a program with dynamically allocation of variable.
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What are register variables? What are the advantage of using register variables?
Explain how can you tell whether two strings are the same?
in malloc and calloc which one is fast and why?