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; /* Value of a is stored in variable temp */
a = b; /* Value of b is stored in variable a */
b = temp; /* 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 CLICK HERE for go back on example page
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
Go Back on Home Chapter By Clicking below Button :)
If above button is not working then copy the below link and paste in your address bar.http://www.mastercaptainit.com/p/c-programming-tutorial.html
No comments:
Post a Comment