Computer Science, asked by vikalpShukla, 2 months ago

wap to input two numbers and swap them without using third variable ​

Answers

Answered by sunmoon28no2
3

Answer:

#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:

i think it's helpful to you

Similar questions