Computer Science, asked by mdwasimhassan58, 3 months ago

write a program to input two different number and swap them without using third variable print the values before and after swapping​

Answers

Answered by itzyourSenorita739
3

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)

Answered by bghhhyt
0
Jhgfcchmjgjguyfhghfhfhtchtchgfhyyfhtfthfhggjfjf
Similar questions