can u write a program in C, which does not use = (eqaul)or
any arithmatic assignment(like -=,+=,*= etc) operator to
swap to number?

Answer Posted / anish

Simple... use XOR (^) operator...
example suppose,
x=101 (binary)
y=010 (binary)
now,
Execute : x=x^y; -->> from LSB 1^0=1 0^1=1 1^0=1
now x=111
Execute : y=x^y; -->> from LSB 1^0=1 1^1=0 1^0=1
now y=101 (101 used to be the value of x)
Execute : x=x^y; -->> from LSB 1^1=0 1^0=1 1^1=0
now x=010 (010 used to be the values of y)

code snippet
{
x=10;
y=30;
//swap x and y
x=x^y;
y=x^y;
x=x^y;
}

now x=30 and y=10

any doubts please ask me....

Is This Answer Correct ?    3 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area

892


What is the argument of a function in c?

759


Explain enumerated types.

789


Why is it important to memset a variable, immediately after allocating memory to it ?

1753


what is the difference between class and unio?

2085


How to Throw some light on the splay trees?

789


What is type qualifiers?

850


What are pointers? What are stacks and queues?

755


what is reason of your company position's in india no. 1.

1956


What are the restrictions of a modulus operator?

826


What is the purpose of scanf() and printf() functions?

894


What's the total generic pointer type?

793


write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list

2510


What is auto keyword in c?

948


What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.

2003