write a program to swap Two numbers without using temp variable.
Answer Posted / krishana singh
a=a*b;
b=a/b;
a=a/b;
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Why cant I open a file by its explicit path?
What is a pointer in c?
What does the c in ctime mean?
What does void main return?
What is void c?
What functions are used in dynamic memory allocation in c?
what type of questions arrive in interview over c programming?
What is the difference between array_name and &array_name?
Does c have an equivalent to pascals with statement?
What is the g value paradox?
what are bit fields? What is the use of bit fields in a structure declaration?
Explain how do you print an address?
How can I write a function that takes a format string and a variable number of arguments?
What does %c do in c?
Explain what is the difference between functions getch() and getche()?