Write a program of swapping of two numbers in c.
Answers
Answered by
1
This is the program for swapping of two numbers with output
Attachments:
Answered by
4
#include <stdio.h>
int main()
{
int x, y;
printf("Enter Value of x ");
scanf("%d", &x);
printf("\nEnter Value of y ");
scanf("%d", &y);
int temp = x;
x = y;
y = temp;
printf("\nAfter Swapping: x = %d, y = %d", x, y);
return 0;
}
Similar questions