a) Write a C language program to swap
two given numbers.
Answers
Answered by
8
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
0
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)
More items...
Explanation:
please Mark as brain least
OK
thank you so much❤❤
Similar questions