Madhan7708 / swap-two-number

#include<stdio.h> int main() { double first, second, temp; printf("Enter first number: "); scanf("%lf", &first); printf("Enter second number: "); scanf("%lf", &second); printf("\nAfter swapping, first number = %.2lf\n", first); printf("After swapping, second number = %.2lf", second); return 0; }
26Updated last year

Alternatives and similar repositories for swap-two-number:

Users that are interested in swap-two-number are comparing it to the libraries listed below