Question
Write a program to interchange two variables without using the third variable?

Answers





Search
Can you Answer!!
  • Q How did the Ancient Greeks know that the earth wasn't flat?
  • Q What is filtering?
  • Q If you could breed two animals together to defy the laws of nature what new animal would you create?
  • Q In Greek mythology who was the Goddess of Chastity
  • Q Who is supposed to have invited Babur to invade India?
  • Q Are you familiar with electronic medical records (emr) systems? which ones have you used. How did you use it?
  • Q Explain Gandhian criticism on modernity.
  • Q Telangana, 29th state of India was formed on:
  • Q What is a procedure ?
  • Q What are the types of remote communications ?
  • Q class X{ public:X(){ cout<<"This is Base";} }; class Y:public X { public:Y(){cout<<"This is Derived";}}; what is printed when an object of Y is created?