write a program to swap Two numbers without using temp variable.
Answer Posted / kedar pethe(mitcoe i.t)
a=a*b;
b=a/b;
a=a/b;
| Is This Answer Correct ? | 15 Yes | 11 No |
Post New Answer View All Answers
What does p mean in physics?
what is the format specifier for printing a pointer value?
Explain goto?
When is the “void” keyword used in a function?
What does != Mean in c?
What is bubble sort in c?
What is data types?
Can you please explain the difference between syntax vs logical error?
How can I convert a number to a string?
What is pointer to pointer in c with example?
Is c is a low level language?
Write a program to print factorial of given number using recursion?
Which is better between malloc and calloc?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Why do we use main function?