Vous êtes sur la page 1sur 1

C Program to Swap Two Numbers

This program asks user to enter two numbers and this program will swap the value of these two
numbers.

Source Code to Swap Two Numbers


#include <stdio.h>
int main(){
float a, b, temp;
printf("Enter value of a: ");
scanf("%f",&a);
printf("Enter value of b: ");
scanf("%f",&b);
temp = a;
a = b;
b = temp;

/* Value of a is stored in variable temp */


/* Value of b is stored in variable a */
/* Value of temp(which contains initial value of a) is stored in variable b*/

printf("\nAfter swapping, value of a = %.2f\n", a);


printf("After swapping, value of b = %.2f", b);
return 0;
}
Output

Enter value of a: 1.20


Enter value of b: 2.45

After swapping, value of a = 2.45


After swapping, value of b = 1.2

Vous aimerez peut-être aussi