write a program to swap Two numbers without using temp variable.
Answer Posted / thangaraj
a=a^b;
b=b^a;
a=a^b;
| Is This Answer Correct ? | 13 Yes | 10 No |
Post New Answer View All Answers
Explain what is the benefit of using const for declaring constants?
Is fortran still used in 2018?
Give me the code of in-order recursive and non-recursive.
Write a program to swap two numbers without using the third variable?
What is pointer to pointer in c language?
find the sum of two matrices and WAP for it.
What is the difference between #include and #include 'file' ?
What is the use of bitwise operator?
Write a function that will take in a phone number and output all possible alphabetical combinations
What is the process to generate random numbers in c programming language?
What's the difference between constant char *p and char * constant p?
What type is sizeof?
What is the value of c?
Write a program to swap two numbers without using third variable?
Can we declare a function inside a function in c?