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 I ensure that integer arithmetic doesnt overflow?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
How will you divide two numbers in a MACRO?
What is difference between stdio h and conio h?
Write a program for Overriding.
What are pointers in C? Give an example where to illustrate their significance.
What are categories used for in c?
What is difference between class and structure?
How to delete a node from linked list w/o using collectons?
What are the keywords in c?
Explain the bubble sort algorithm.
In C programming, how do you insert quote characters (‘ and “) into the output screen?
How do I copy files?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What is enumerated data type in c?