swap two integer variables without using a third temporary
variable?
Answer Posted / jigish
b=a*b;
a=b/a;
b=b/a;
simple..try it
| Is This Answer Correct ? | 15 Yes | 5 No |
Post New Answer View All Answers
What is the process of writing the null pointer?
Differentiate between a for loop and a while loop? What are it uses?
How do shell structures work?
What is an arrays?
Why is c called c not d or e?
How can I change the size of the dynamically allocated array?
Why do we use header files in c?
Is c weakly typed?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
How many types of errors are there in c language? Explain
How does sizeof know array size?
Explain what are binary trees?
What is the difference between far and near in c?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
If you know then define #pragma?