Answer:
The program is designed using C programming language
Step-by-step explanation:
#include <stdio.h>
int main () {
printf("Enter the first number here ");
scanf("%f", num1);
printf("Enter the second number here ");
scanf("%f", num2);
num1 = num1 + num2 ;
num1 = num2 - num1 ;
num2 = num2 - num1;
printf("The swapped number num is %f\\", num1);
printf("The second swapped is %f", num2);
return(0);
}