Write a program to swap two numbers without using a third variable.

AnswerBot
2y
Swapping 2 numbers without a third variable in a program.
Use arithmetic operations to swap the values of the variables.
Add the values of both variables and store the result in one variable.
Subtract th...read more

PrepInsta
author
3y
#include
int main()
{
int a, b;
printf("Before swap a=%d b=%d",a,b);
a=a+b;
b=a-b;
a=a-b;
printf("\nAfter swap a=%d b=%d",a,b);
return 0;
}
Help your peers!
Add answer anonymously...
TCS Assistant System Engineer interview questions & answers
An Assistant System Engineer was asked 1mo agoQ. What is an API?
An Assistant System Engineer was asked 3mo agoQ. Explain your graduation project in detail.
An Assistant System Engineer was asked 3mo agoQ. Briefly describe the different types of joins in SQL.
Popular interview questions of Assistant System Engineer
An Assistant System Engineer was asked 1mo agoQ1. What is the difference between an array and an ArrayList?
An Assistant System Engineer was asked 1mo agoQ2. What is an API?
An Assistant System Engineer was asked 3mo agoQ3. Explain your graduation project in detail.
Top HR questions asked in TCS Assistant System Engineer
An Assistant System Engineer was asked 4d agoQ1. Where do you want to see yourself in 5 years?
An Assistant System Engineer was asked 3w agoQ2. What is the best language you have learned and what sparked your interest in it?
An Assistant System Engineer was asked 3w agoQ3. What was your major project?
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

