Write a program to input two numbers and swap them .
Answers
Answered by
5
Answer:
C Program to swap two numbers without third variable
#include<stdio.h>
int main()
{
int a=10, b=20;
printf("Before swap a=%d b=%d",a,b);
a=a+b;//a=30 (10+20)
b=a-b;//b=10 (30-20)
a=a-b;//a=20 (30-10)
Explanation:
please mark me as brain least and follow me and thank me
Similar questions
Computer Science,
4 months ago
Math,
4 months ago
Math,
8 months ago
Computer Science,
8 months ago
English,
1 year ago