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
How can a program be made to print the line number where an error occurs?
Explain what header files do I need in order to define the standard library functions I use?
What is a pointer and how it is initialized?
What does 4d mean in c?
define string ?
What are header files and explain what are its uses in c programming?
What is scope rule in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Tell me about low level programming languages.
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is the difference between a function and a method in c?
How can I write functions that take a variable number of arguments?
Does * p ++ increment p or what it points to?
How many loops are there in c?
What are the advantages of union?